/** * UptimeRobot Node - Version 1 * Discriminator: resource=alertContact, operation=getAll */ interface Credentials { uptimeRobotApi: CredentialReference; } /** Get many monitors */ export type UptimeRobotV1AlertContactGetAllParams = { resource: 'alertContact'; 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 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Alert contact IDs separated with dash, e.g. 236-1782-4790 */ alert_contacts?: string | Expression | PlaceholderValue; }; }; export type UptimeRobotV1AlertContactGetAllNode = { type: 'n8n-nodes-base.uptimeRobot'; version: 1; credentials?: Credentials; config: NodeConfig; };