Type Alias ReportsGetChatSessionsReportsResponse

ReportsGetChatSessionsReportsResponse: {
    from?: string;
    next_page_token?: string;
    page_size?: number;
    sessions?: {
        channel_id?: string;
        id?: string;
        last_message_sent_time?: string;
        name?: string;
        type?: "Group" | "1:1";
    }[];
    to?: string;
}