Skip to content

posting_product

PostingProduct dataclass

Python
1
PostingProduct(mandatory_mark: list[str], name: str, offer_id: str, price: str, quantity: int, sku: int, currency_code: Currency, dimensions: ProductDimension | None = None, jw_uin: list[str] | None = None)

Bases: SellerApiBaseModel

dimensions class-attribute instance-attribute

Python
1
dimensions: ProductDimension | None = None

Размеры товара.

jw_uin class-attribute instance-attribute

Python
1
jw_uin: list[str] | None = None

Уникальный идентификационный номер (УИН) ювелирного изделия.

mandatory_mark instance-attribute

Python
1
mandatory_mark: list[str]

Обязательная маркировка товара.

name instance-attribute

Python
1
name: str

Название товара.

offer_id instance-attribute

Python
1
offer_id: str

Идентификатор товара в системе продавца — артикул.

price instance-attribute

Python
1
price: str

Цена товара.

quantity instance-attribute

Python
1
quantity: int

Количество товара в отправлении.

sku instance-attribute

Python
1
sku: int

Идентификатор товара в системе Ozon — SKU.

ProductDimension dataclass

Python
1
ProductDimension(height: str, length: str, weight: str, width: str)

Bases: SellerApiBaseModel

height instance-attribute

Python
1
height: str

Высота упаковки.

length instance-attribute

Python
1
length: str

Длина товара.

weight instance-attribute

Python
1
weight: str

Вес товара в упаковке.

width instance-attribute

Python
1
width: str

Ширина упаковки.