n8n-nodes-base
Version:
Base nodes of n8n
33 lines (29 loc) • 1.03 kB
text/typescript
/**
* GoToWebinar Node - Version 1
* Discriminator: resource=attendee, operation=get
*/
interface Credentials {
goToWebinarOAuth2Api: CredentialReference;
}
export type GoToWebinarV1AttendeeGetParams = {
resource: 'attendee';
operation: 'get';
/**
* Key of the webinar that the attendee attended. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
webinarKey?: string | Expression<string>;
/**
* Key of the session that the attendee attended. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
sessionKey?: string | Expression<string>;
/**
* Registrant key of the attendee at the webinar session
*/
registrantKey?: string | Expression<string> | PlaceholderValue;
};
export type GoToWebinarV1AttendeeGetNode = {
type: 'n8n-nodes-base.goToWebinar';
version: 1;
credentials?: Credentials;
config: NodeConfig<GoToWebinarV1AttendeeGetParams>;
};