Interface StoreProduct

interface StoreProduct {
    base_id: number;
    copyright: string;
    description_lang_key: string;
    has_animation: number | boolean;
    id: number;
    is_new: number | boolean;
    is_vmoji: number | boolean;
    payment_region: string;
    previews: BaseImage[];
    purchase_date: number;
    style_ids: number[];
    style_sticker_ids: number[];
    subtitle: string;
    title: string;
    title_lang_key: string;
    type: "stickers";
    url: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

base_id: number

Id of the base pack (for sticker pack styles)

copyright: string

Product copyright information

description_lang_key: string
has_animation: number | boolean

Information whether the product is an animated sticker pack (for stickers product type)

id: number

Id of the product

is_new: number | boolean

Information whether sticker product wasn't used after being purchased

is_vmoji: number | boolean

Information whether sticker pack is a vmoji pack

payment_region: string
previews: BaseImage[]
purchase_date: number

Date (Unix time) when the product was purchased

style_ids: number[]
style_sticker_ids: number[]
subtitle: string

Subtitle of the product

title: string

Title of the product

title_lang_key: string
type: "stickers"

Product type

url: string

Generated using TypeDoc