Interface MarketReorderItemsParams

interface MarketReorderItemsParams {
    after?: number;
    album_id?: number;
    before?: number;
    item_id: number;
    owner_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

after?: number

ID of an item to place current item after it.

album_id?: number

ID of a collection to reorder items in. Set 0 to reorder full items list.

before?: number

ID of an item to place current item before it.

item_id: number

Item ID.

owner_id: number

ID of an item owner community.

Generated using TypeDoc