import type * as Merge from "../../../index"; /** * # The Office Object * ### Description * The `Office` object is used to represent an office within a company. A given `Job` has the `Office` ID in its offices field. * ### Usage Example * Fetch from the `LIST Offices` endpoint and view the offices within a company. */ export interface Office { id?: string; /** The third-party API ID of the matching object. */ remoteId?: string; /** The datetime that this object was created by Merge. */ createdAt?: Date; /** The datetime that this object was modified by Merge. */ modifiedAt?: Date; /** The office's name. */ name?: string; /** The office's location. */ location?: string; /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ remoteWasDeleted?: boolean; fieldMappings?: Record; remoteData?: Merge.ats.RemoteData[]; }