Skip to content

status

ProductStatus dataclass

Python
1
ProductStatus(state: str, state_failed: str, moderate_status: str, decline_reasons: list[str], validation_state: str, state_name: str, state_description: str, is_failed: bool, is_created: bool, state_tooltip: str, item_errors: list[ProductStatusItemErrors], state_updated_at: datetime)

Bases: SellerApiBaseModel

decline_reasons instance-attribute

Python
1
decline_reasons: list[str]

Причины отклонения товара.

is_created instance-attribute

Python
1
is_created: bool

Признак, что товар создан.

is_failed instance-attribute

Python
1
is_failed: bool

Признак, что при создании товара возникли ошибки.

item_errors instance-attribute

Python
1
item_errors: list[ProductStatusItemErrors]

Ошибки при загрузке товаров.

moderate_status instance-attribute

Python
1
moderate_status: str

Статус модерации.

state instance-attribute

Python
1
state: str

Состояние товара.

state_description instance-attribute

Python
1
state_description: str

Описание состояния товара.

state_failed instance-attribute

Python
1
state_failed: str

Состояние товара, на переходе в которое произошла ошибка.

state_name instance-attribute

Python
1
state_name: str

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

state_tooltip instance-attribute

Python
1
state_tooltip: str

Подсказки для текущего состояния товара.

state_updated_at instance-attribute

Python
1
state_updated_at: datetime

Время последнего изменения состояния товара.

validation_state instance-attribute

Python
1
validation_state: str

Статус валидации.

ProductStatusItemErrors dataclass

Python
1
ProductStatusItemErrors(code: str, state: str, level: str, description: str, field: str, attribute_id: int, attribute_name: str, optional_description_elements: dict[str])

Bases: SellerApiBaseModel

attribute_id instance-attribute

Python
1
attribute_id: int

Атрибут, в котором произошла ошибка.

attribute_name instance-attribute

Python
1
attribute_name: str

Название атрибута, в котором произошла ошибка

code instance-attribute

Python
1
code: str

Код ошибки.

description instance-attribute

Python
1
description: str

Описание ошибки.

field instance-attribute

Python
1
field: str

Поле, в котором произошла ошибка.

level instance-attribute

Python
1
level: str

Уровень ошибки.

optional_description_elements instance-attribute

Python
1
optional_description_elements: dict[str]

Дополнительные поля для описания ошибки.

state instance-attribute

Python
1
state: str

Состояние товара, в котором произошла ошибка.