UNPKG

kaltura-node-typescript-client

Version:
20 lines (19 loc) 864 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface ZoomVendorOauthValidationActionArgs extends KalturaRequestArgs { } /** * Build request payload for service 'zoomVendor' action 'oauthValidation'. * * Usage: load html page the that will ask the user for its KMC URL, derive the region of the user from it, * and redirect to the registration page in the correct region, while forwarding the necessary code for registration * * Server response type: void * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class ZoomVendorOauthValidationAction extends KalturaRequest<void> { constructor(data?: ZoomVendorOauthValidationActionArgs); protected _getMetadata(): KalturaObjectMetadata; }