Interface AccountOffer

interface AccountOffer {
    currency_amount: number;
    description: string;
    id: number;
    img: string;
    instruction: string;
    instruction_html: string;
    link_id: number;
    link_type: "group" | "profile" | "app";
    price: number;
    short_description: string;
    tag: string;
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

currency_amount: number

Currency amount

description: string

Offer description

id: number

Offer ID

img: string

URL of the preview image

instruction: string

Instruction how to process the offer

instruction_html: string

Instruction how to process the offer (HTML format)

link_id: number

Link id

link_type: "group" | "profile" | "app"

Link type

price: number

Offer price

short_description: string

Offer short description

tag: string

Offer tag

title: string

Offer title

Generated using TypeDoc