kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
26 lines (25 loc) • 858 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface SsoLoginActionArgs extends KalturaRequestArgs {
userId: string;
applicationType: string;
partnerId?: number;
}
/**
* Build request payload for service 'sso' action 'login'.
*
* Usage: Login with SSO, getting redirect url according to application type and partner Id
* or according to application type and domain
*
* Server response type: string
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class SsoLoginAction extends KalturaRequest<string> {
userId: string;
applicationType: string;
partnerId: number;
constructor(data: SsoLoginActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}