n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 985 B
text/typescript
/**
* GoToWebinar Node - Version 1
* Discriminator: resource=coorganizer, operation=reinvite
*/
interface Credentials {
goToWebinarOAuth2Api: CredentialReference;
}
export type GoToWebinarV1CoorganizerReinviteParams = {
resource: 'coorganizer';
operation: 'reinvite';
/**
* By default only internal co-organizers (with a GoToWebinar account) can be deleted. If you want to use this call for external co-organizers you have to set this parameter to 'true'.
*/
webinarKey?: string | Expression<string> | PlaceholderValue;
/**
* Key of the co-organizer to reinvite
*/
coorganizerKey?: string | Expression<string> | PlaceholderValue;
/**
* Whether the co-organizer has no GoToWebinar account
* @default false
*/
isExternal?: boolean | Expression<boolean>;
};
export type GoToWebinarV1CoorganizerReinviteNode = {
type: 'n8n-nodes-base.goToWebinar';
version: 1;
credentials?: Credentials;
config: NodeConfig<GoToWebinarV1CoorganizerReinviteParams>;
};