import type * as Merge from "../../../index"; /** * # The Account Object * ### Description * The `Account` object is used to represent a company in a CRM system. * ### Usage Example * TODO */ export interface AccountRequest { /** The account's owner. */ owner?: Merge.crm.AccountRequestOwner; /** The account's name. */ name?: string; /** The account's description. */ description?: string; /** The account's industry. */ industry?: string; /** The account's website. */ website?: string; /** The account's number of employees. */ numberOfEmployees?: number; addresses?: Merge.crm.AddressRequest[]; /** The last date (either most recent or furthest in the future) of when an activity occurs in an account. */ lastActivityAt?: Date; integrationParams?: Record; linkedAccountParams?: Record; remoteFields?: Merge.crm.RemoteFieldRequest[]; }