Skip to content

customer

Address dataclass

Python
1
Address(comment: str, address_tail: str, zip_code: str, country: str, region: str, city: str, district: str, latitude: float, longitude: float, provider_pvz_code: str, pvz_code: int)

Bases: SellerApiBaseModel

Информация об адресе доставки.

address_tail instance-attribute

Python
1
address_tail: str

Адрес в текстовом формате.

city instance-attribute

Python
1
city: str

Город доставки.

comment instance-attribute

Python
1
comment: str

Комментарий к заказу.

country instance-attribute

Python
1
country: str

Страна доставки.

district instance-attribute

Python
1
district: str

Район доставки.

latitude instance-attribute

Python
1
latitude: float

Широта.

longitude instance-attribute

Python
1
longitude: float

Долгота.

provider_pvz_code instance-attribute

Python
1
provider_pvz_code: str

Код пункта выдачи заказов 3PL провайдера.

pvz_code instance-attribute

Python
1
pvz_code: int

Код пункта выдачи заказов.

region instance-attribute

Python
1
region: str

Регион доставки.

zip_code instance-attribute

Python
1
zip_code: str

Почтовый индекс получателя.

Customer dataclass

Python
1
Customer(address: Address, customer_email: str, customer_id: int, name: str, phone: str)

Bases: SellerApiBaseModel

Данные о покупателе.

address instance-attribute

Python
1
address: Address

Информация об адресе доставки.

customer_email instance-attribute

Python
1
customer_email: str

Email покупателя.

customer_id instance-attribute

Python
1
customer_id: int

Идентификатор покупателя.

name instance-attribute

Python
1
name: str

Имя покупателя.

phone instance-attribute

Python
1
phone: str

Контактный телефон. Всегда возвращает пустую строку.