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); } export default AgentSessionListResponse;