UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 707 B
import AgentSessionListItem from './AgentSessionListItem'; /** * @export * @class AgentSessionListResponse */ export declare class AgentSessionListResponse { /** * Agent application name (required) * @type {string} * @memberof AgentSessionListResponse */ appName?: string; /** * User ID (required) * @type {string} * @memberof AgentSessionListResponse */ userId?: string; /** * Sessions for the user (required) * @type {AgentSessionListItem[]} * @memberof AgentSessionListResponse */ sessions?: AgentSessionListItem[]; constructor(obj?: Partial<AgentSessionListResponse>); } export default AgentSessionListResponse;