

export interface BookmarkPostList {
    response_code:     string;
    message:          string;
    bookmark_post_list: BookmarkList[];
    status:           string;
}

export interface BookmarkList {
    bookmark_post_id: string;
    post_id:         string;
    user_id:         string;
    text:           string;
    type:           string;
    location:       string;
    created_at:      Date;
    updated_at:      Date;
    post_images:     PostImages[];
    post_videos:     PostVideo[];
    username:       string;
    profile_pic:     string;
}

export interface PostVideo {
    post_video_id:        number;
    url:                string;
    type:               string;
    post_video_thumbnail: string;
}

export interface PostImages 
{
    post_image_id: number;
  url: string;
  type: string;
}