/** * Mautic Node - Version 1 * Discriminator: resource=contactSegment, operation=remove */ interface Credentials { mauticApi: CredentialReference; mauticOAuth2Api: CredentialReference; } /** Add/remove contacts to/from a segment */ export type MauticV1ContactSegmentRemoveParams = { resource: 'contactSegment'; operation: 'remove'; authentication?: 'credentials' | 'oAuth2' | Expression; /** * Contact ID */ contactId?: string | Expression | PlaceholderValue; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ segmentId?: string | Expression; }; export type MauticV1ContactSegmentRemoveNode = { type: 'n8n-nodes-base.mautic'; version: 1; credentials?: Credentials; config: NodeConfig; };