n8n-nodes-base
Version:
Base nodes of n8n
41 lines (37 loc) • 1.25 kB
text/typescript
/**
* Webex by Cisco Node - Version 1
* Discriminator: resource=meeting, operation=get
*/
interface Credentials {
ciscoWebexOAuth2Api: CredentialReference;
}
export type CiscoWebexV1MeetingGetParams = {
resource: 'meeting';
operation: 'get';
/**
* ID of the meeting
*/
meetingId?: string | Expression<string> | PlaceholderValue;
/**
* Options
* @default {}
*/
options?: {
/** Email address for the meeting host. This parameter is only used if the user or application calling the API has the admin-level scopes.
*/
hostEmail?: string | Expression<string> | PlaceholderValue;
/** Meeting password. It's required when the meeting is protected by a password and the current user is not privileged to view it if they are not a host, co-host or invitee of the meeting.
*/
password?: string | Expression<string> | PlaceholderValue;
/** Whether or not to send emails to host and invitees. It is an optional field and default value is true.
* @default true
*/
sendEmail?: boolean | Expression<boolean>;
};
};
export type CiscoWebexV1MeetingGetNode = {
type: 'n8n-nodes-base.ciscoWebex';
version: 1;
credentials?: Credentials;
config: NodeConfig<CiscoWebexV1MeetingGetParams>;
};