n8n-nodes-base
Version:
Base nodes of n8n
25 lines (21 loc) • 544 B
text/typescript
/**
* GoToWebinar Node - Version 1
* Discriminator: resource=webinar, operation=get
*/
interface Credentials {
goToWebinarOAuth2Api: CredentialReference;
}
export type GoToWebinarV1WebinarGetParams = {
resource: 'webinar';
operation: 'get';
/**
* Key of the webinar to retrieve
*/
webinarKey?: string | Expression<string> | PlaceholderValue;
};
export type GoToWebinarV1WebinarGetNode = {
type: 'n8n-nodes-base.goToWebinar';
version: 1;
credentials?: Credentials;
config: NodeConfig<GoToWebinarV1WebinarGetParams>;
};