export interface Chat {
    response_code: string;
    message:       string;
    chat_list:     ChatList[];
    status:        string;
}

export interface ChatList {
    id:             string;
    my_id:          string;
    second_id:      string;
    message_type:   string;
    message:        string;
    url:            string;
    type:           string;
    user_id:        string;
    first_name:     string;
    role:           string;
    profile_pic:    string;
    last_seen:      string;
    date:           string;
    time:           string;
    unread_message: string;
    last_message_created: string;
}