

export interface UserProfile {
    responseCode: string;
    message:      string;
    status:       string;
    user_data:     UserData;
}

export interface UserData {
    id:          string;
    first_name:   string;
    last_name:    string;
    email:       string;
    login_type:   string;
    username:    string;
    mobile:      string;
    country_code: string;
    device_token: string;
    role:        string;
    profile_pic:  string;
    address:     string;
    bio:         string;
    dob:         string;
    gender:      string;
    avtar_id:     string;
    followers:   string;
    following:   string;
    is_followers: string;
    is_block:     string;
    country: string;
}
