Interface BaseStickerOld

interface BaseStickerOld {
    height: number;
    id: number;
    is_allowed: number | boolean;
    photo_128: string;
    photo_256: string;
    photo_352: string;
    photo_512: string;
    photo_64: string;
    product_id: number;
    width: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

height: number

Height in px

id: number

Sticker ID

is_allowed: number | boolean

Information whether the sticker is allowed

photo_128: string

URL of the preview image with 128 px in height

photo_256: string

URL of the preview image with 256 px in height

photo_352: string

URL of the preview image with 352 px in height

photo_512: string

URL of the preview image with 512 px in height

photo_64: string

URL of the preview image with 64 px in height

product_id: number

Pack ID

width: number

Width in px

Generated using TypeDoc