interface DmConversation {
    conversation_id: string;
    last_read_event_id: string;
    max_entry_id: string;
    mention_notifications_disabled: boolean;
    min_entry_id: string;
    muted: boolean;
    notifications_disabled: boolean;
    nsfw: boolean;
    participants: DmParticipant[];
    read_only: boolean;
    sort_event_id: string;
    sort_timestamp: string;
    status: DmStatus;
    trusted: boolean;
    type: string;
}

Properties

conversation_id: string
last_read_event_id: string
max_entry_id: string
mention_notifications_disabled: boolean
min_entry_id: string
muted: boolean
notifications_disabled: boolean
nsfw: boolean
participants: DmParticipant[]
read_only: boolean
sort_event_id: string
sort_timestamp: string
status: DmStatus
trusted: boolean
type: string