/** * Zammad Node - Version 1 * Discriminator: resource=group, operation=update */ interface Credentials { zammadBasicAuthApi: CredentialReference; zammadTokenAuthApi: CredentialReference; } /** Update a group */ export type ZammadV1GroupUpdateParams = { resource: 'group'; operation: 'update'; authentication?: 'basicAuth' | 'tokenAuth' | Expression; /** * Group to update. Specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ id?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Active * @default true */ active?: boolean | Expression; /** Custom Fields * @default {} */ customFieldsUi?: { /** Custom Field */ customFieldPairs?: Array<{ /** Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ name?: string | Expression; /** Value to set on the custom field */ value?: string | Expression | PlaceholderValue; }>; }; /** Group Name */ name?: string | Expression | PlaceholderValue; /** Notes */ note?: string | Expression | PlaceholderValue; }; }; export type ZammadV1GroupUpdateNode = { type: 'n8n-nodes-base.zammad'; version: 1; credentials?: Credentials; config: NodeConfig; };