/** * CoinGecko Node - Version 1 * Discriminator: resource=event, operation=getAll */ /** Get many coins */ export type CoinGeckoV1EventGetAllParams = { resource: 'event'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; /** * Options * @default {} */ options?: { /** Country code of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ country_code?: string | Expression; /** Lists events after this date */ from_date?: string | Expression; /** Lists events before this date */ to_date?: string | Expression; /** Type of event. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ type?: string | Expression; /** Whether to list only upcoming events * @default true */ upcoming_events_only?: boolean | Expression; }; }; export type CoinGeckoV1EventGetAllNode = { type: 'n8n-nodes-base.coinGecko'; version: 1; config: NodeConfig; };