interface Shot {
    animated: boolean;
    attachments: Attachment[];
    description: string;
    height: number;
    html_url: string;
    id: number;
    images: {
        four_x: null | string;
        hidpi: null | string;
        normal: string;
        one_x: null | string;
        teaser: string;
        two_x: null | string;
    };
    low_profile: boolean;
    projects: Project[];
    published_at: null
    | string;
    scheduled_for: null | string;
    tags: string[];
    team: Team;
    title: string;
    updated_at: string;
    video?: Video;
    width: number;
}

Properties

animated: boolean
attachments: Attachment[]
description: string
height: number
html_url: string
id: number
images: {
    four_x: null | string;
    hidpi: null | string;
    normal: string;
    one_x: null | string;
    teaser: string;
    two_x: null | string;
}
low_profile: boolean
projects: Project[]
published_at: null | string
scheduled_for: null | string
tags: string[]
team: Team
title: string
updated_at: string
video?: Video
width: number