UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

27 lines (26 loc) 578 B
/** * @export * @class AgentSessionResponse */ export declare class AgentSessionResponse { /** * Session ID (required) * @type {string} * @memberof AgentSessionResponse */ sessionId?: string; /** * Agent application name (required) * @type {string} * @memberof AgentSessionResponse */ appName?: string; /** * User ID (required) * @type {string} * @memberof AgentSessionResponse */ userId?: string; constructor(obj?: Partial<AgentSessionResponse>); } export default AgentSessionResponse;