tenor-client
    Preparing search index...

    Interface TenorResponseObject

    interface TenorResponseObject {
        bg_color?: string;
        content_description: string;
        content_description_source?: string;
        created: number;
        flags: TenorMediaFlag[];
        hasaudio: boolean;
        hascaption: boolean;
        id: string;
        itemurl: string;
        media_formats: Record<TenorContentFormat, TenorMediaObject>;
        tags: string[];
        title: string;
        url: string;
    }
    Index

    Properties

    bg_color?: string

    The most common background pixel color of the content

    content_description: string

    A textual description of the content. It is recommended to use content_description for user accessibility features.

    content_description_source?: string
    created: number

    A Unix timestamp that represents when this post was created.

    An array to signify whether the content is a sticker or static image, has audio, or is any combination of these. If sticker and static aren't present, then the content is a GIF. A blank flags field signifies a GIF without audio.

    hasaudio: boolean

    Returns true if this post contains audio. Note: Only video formats support audio. The GIF image file format can't contain audio information.

    hascaption: boolean

    Returns true if this post contains captions.

    id: string

    Tenor result identifier.

    itemurl: string

    The full URL to view the post on tenor.com.

    media_formats: Record<TenorContentFormat, TenorMediaObject>

    A dictionary with a content format as the key and a Media Object as the value.

    tags: string[]

    An array of tags for the post

    title: string

    The title of the post

    url: string

    A short URL to view the post on tenor.com.