/**
 * @example
 *     {
 *         id: "id"
 *     }
 */
export interface PatchCompaniesIdRequest {
    id: string;
    /** Attributes for company update */
    attributes?: Record<string, unknown>;
    /** Country code if phone_number is passed in attributes. */
    countryCode?: number;
    /** Warning - Using PATCH on linkedContactIds replaces the list of linked contacts. Omitted IDs will be removed. */
    linkedContactsIds?: number[];
    /** Warning - Using PATCH on linkedDealsIds replaces the list of linked contacts. Omitted IDs will be removed. */
    linkedDealsIds?: string[];
    /** Name of company */
    name?: string;
}
