/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * A reference to a company associated with a contact
 */
export interface ContactCompany {
    /** The unique identifier for the company */
    id: string;
    /** The type of the object */
    type: "company";
    /** URL to get the full company resource */
    url: string;
}
