interface ISession {
    category: string;
    connection: string;
    created_at: Timestamp;
    expire_at: Timestamp;
    id: string;
    key: string;
    two_way_enable: boolean;
    type: string;
    updated_at: Timestamp;
    user_initiated: boolean;
    workspace: IWorkspace;
}

Properties

category: string
connection: string
created_at: Timestamp
expire_at: Timestamp
id: string
key: string
two_way_enable: boolean
type: string
updated_at: Timestamp
user_initiated: boolean
workspace: IWorkspace