/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * An object containing data about the companies that a contact is associated with.
 */
export interface CompanyData {
    /** The unique identifier for the company which is given by Intercom. */
    id?: string;
    /** The type of the object. Always company. */
    type?: "company";
    /** The relative URL of the company. */
    url?: string;
}
