Interface MarketMarketItem

interface MarketMarketItem {
    access_key: string;
    button_title: string;
    date: number;
    description: string;
    external_id: string;
    id: number;
    is_adult: number | boolean;
    is_favorite: number | boolean;
    is_main_variant: number | boolean;
    is_owner: number | boolean;
    owner_id: number;
    post_id: number;
    post_owner_id: number;
    sku: string;
    stock_amount: number;
    thumb_photo: string;
    title: string;
    url: string;
    variants_grouping_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

access_key: string

Access key for the market item

button_title: string

Title for button for url

date: number

Date when the item has been created in Unixtime

description: string

Item description

external_id: string
id: number

Item ID

is_adult: number | boolean
is_favorite: number | boolean
is_main_variant: number | boolean
is_owner: number | boolean
owner_id: number

Item owner's ID

post_id: number

Attach for post id

post_owner_id: number

Attach for post owner id

sku: string
stock_amount: number

Inventory balances

thumb_photo: string

URL of the preview image

title: string

Item title

url: string

URL to item

variants_grouping_id: number

Generated using TypeDoc