/** * Action Network Node - Version 1 * Discriminator: resource=attendance, operation=get */ interface Credentials { actionNetworkApi: CredentialReference; } export type ActionNetworkV1AttendanceGetParams = { resource: 'attendance'; operation: 'get'; /** * ID of the event whose attendance to retrieve */ eventId?: string | Expression | PlaceholderValue; /** * ID of the attendance to retrieve */ attendanceId?: string | Expression | PlaceholderValue; /** * Whether to return a simplified version of the response instead of the raw data * @default true */ simple?: boolean | Expression; }; export type ActionNetworkV1AttendanceGetNode = { type: 'n8n-nodes-base.actionNetwork'; version: 1; credentials?: Credentials; config: NodeConfig; };