export type api_CreateClientInput = { /** * CompanyID associates the client with a single company. */ companyId?: string; /** * CompanyIDs associates the client with multiple companies (multi-company portals). */ companyIds?: Array; /** * CustomFields holds custom field values keyed by custom field key. */ customFields?: any; /** * Email is the client's email address. */ email: string; /** * FamilyName is the client's last name. */ familyName: string; /** * GivenName is the client's first name. */ givenName: string; };