/**
 * @example
 *     {
 *         name: "company"
 *     }
 */
export interface PostCompaniesRequest {
    /** Attributes for company creation */
    attributes?: Record<string, unknown>;
    /** Country code if phone_number is passed in attributes. */
    countryCode?: number;
    /** Contact ids to be linked with company */
    linkedContactsIds?: number[];
    /** Deal ids to be linked with company */
    linkedDealsIds?: string[];
    /** Name of company */
    name: string;
}
