export type api_UpdateClientInput = { /** * CompanyID moves the client to a different company. */ companyId?: string; /** * CustomFields holds custom field values keyed by custom field key. */ customFields?: any; /** * FamilyName is the client's last name. */ familyName?: string; /** * GivenName is the client's first name. */ givenName?: string; };