export interface StoryByUser {
    response_code: string;
    message:      string;
    story:        Story[];
    my_post:       MyStory[];
    status:       string;
}

export interface Story {
    story_id:       string;
    user_id:        string;
    url:           string;
    type:          string;
    create_date:    string;
    total_stories:  number;
    user_read_count: number;
    username:      string;
    profile_pic:    string;
    story_image:    StoryImage[];
}

export interface MyStory {
    story_id:string;
    user_id:string;
    url:string;
    type:string;
    create_date:string;
    username:string;
    profile_pic:string;
    story_image: StoryImage[];
}

export interface StoryImage {
    story_id:   number;
    url:       string;
    type:      string;
    created_at: string;
    location:  string;
    text:      string;
    is_like:    string;
    is_seen:    number;
}
