export interface IDm {
    id: number;
    created_timestamp: string;
    msg: string;
}
export interface IDirectMessageListResponse {
    next_cursor: string;
    events: Array<IDm>;
}
