/** * @export * @class AgentSessionListItem */ export declare class AgentSessionListItem { /** * Session ID (required) * @type {string} * @memberof AgentSessionListItem */ sessionId?: string; /** * Session title * @type {string} * @memberof AgentSessionListItem */ title?: string; /** * Last update time in seconds * @type {number} * @memberof AgentSessionListItem */ lastUpdateTimeSeconds?: number; constructor(obj?: Partial); } export default AgentSessionListItem;