n8n-nodes-base
Version:
Base nodes of n8n
30 lines (26 loc) • 822 B
text/typescript
/**
* GoToWebinar Node - Version 1
* Discriminator: resource=registrant, operation=delete
*/
interface Credentials {
goToWebinarOAuth2Api: CredentialReference;
}
export type GoToWebinarV1RegistrantDeleteParams = {
resource: 'registrant';
operation: 'delete';
/**
* Key of the webinar of the registrant to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
* @default []
*/
webinarKey?: string | Expression<string>;
/**
* Key of the registrant to delete
*/
registrantKey?: string | Expression<string> | PlaceholderValue;
};
export type GoToWebinarV1RegistrantDeleteNode = {
type: 'n8n-nodes-base.goToWebinar';
version: 1;
credentials?: Credentials;
config: NodeConfig<GoToWebinarV1RegistrantDeleteParams>;
};