/**
 * Wise Node - Version 1
 * Discriminator: resource=recipient, operation=getAll
 */


interface Credentials {
  wiseApi: CredentialReference;
}

export type WiseV1RecipientGetAllParams = {
  resource: 'recipient';
  operation: 'getAll';
/**
 * Whether to return all results or only up to a given limit
 * @default false
 */
    returnAll?: boolean | Expression<boolean>;
/**
 * Max number of results to return
 * @displayOptions.show { returnAll: [false] }
 * @default 5
 */
    limit?: number | Expression<number>;
};

export type WiseV1RecipientGetAllNode = {
  type: 'n8n-nodes-base.wise';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<WiseV1RecipientGetAllParams>;
};