/** * Help Scout Node - Version 1 * Discriminator: resource=customer, operation=update */ interface Credentials { helpScoutOAuth2Api: CredentialReference; } /** Update a customer */ export type HelpScoutV1CustomerUpdateParams = { resource: 'customer'; operation: 'update'; /** * Customer ID */ customerId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Customer’s age * @default 1 */ age?: number | Expression; /** First name of the customer. When defined it must be between 1 and 40 characters. */ firstName?: string | Expression | PlaceholderValue; /** Gender of this customer */ gender?: 'female' | 'male' | 'unknown' | Expression; /** Job title. Max length 60 characters. */ jobTitle?: string | Expression | PlaceholderValue; /** Last name of the customer */ lastName?: string | Expression | PlaceholderValue; /** Location of the customer */ location?: string | Expression | PlaceholderValue; /** Notes */ background?: string | Expression | PlaceholderValue; /** Organization */ organization?: string | Expression | PlaceholderValue; /** URL of the customer’s photo */ photoUrl?: string | Expression | PlaceholderValue; }; }; export type HelpScoutV1CustomerUpdateNode = { type: 'n8n-nodes-base.helpScout'; version: 1; credentials?: Credentials; config: NodeConfig; };