import type * as Merge from "../../../index"; /** * # The CustomObject Object * ### Description * The `Custom Object` record refers to an instance of a Custom Object Class. * ### Usage Example * TODO */ export interface CustomObject { 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 custom object class the custom object record belongs to. */ objectClass?: string; /** The fields and values contained within the custom object record. */ fields?: Record; remoteFields?: Merge.crm.RemoteField[]; }