Interface NekosImage

interface NekosImage {
    artist: Artist;
    characters: Character[];
    color_dominant: number[];
    color_palette: number[][];
    created_at: number;
    duration: number;
    hash_md5: string;
    hash_perceptual: string;
    id: number;
    image_height: number;
    image_size: number;
    image_url: string;
    image_width: number;
    is_animated: boolean;
    is_flagged: boolean;
    is_original: boolean;
    is_screenshot: boolean;
    rating: Rating;
    sample_height: number;
    sample_size: number;
    sample_url: string;
    sample_width: number;
    source: string;
    source_id: number;
    tags: Tag[];
    updated_at: number;
    verification: string;
}

Properties

artist: Artist
characters: Character[]
color_dominant: number[]
color_palette: number[][]
created_at: number
duration: number
hash_md5: string
hash_perceptual: string
id: number
image_height: number
image_size: number
image_url: string
image_width: number
is_animated: boolean
is_flagged: boolean
is_original: boolean
is_screenshot: boolean
rating: Rating
sample_height: number
sample_size: number
sample_url: string
sample_width: number
source: string
source_id: number
tags: Tag[]
updated_at: number
verification: string

Generated using TypeDoc