Skip to content

enums

AsyncLabelGetStatus

Bases: StrEnum

Статус формирования этикеток

COMPLETED class-attribute instance-attribute

Python
1
COMPLETED = 'completed'

файл с этикетками готов

ERROR class-attribute instance-attribute

Python
1
ERROR = 'error'

при формировании файла произошла ошибка

FAILED class-attribute instance-attribute

Python
1
FAILED = 'failed'

при формировании файла произошла ошибка

IN_PROGRESS class-attribute instance-attribute

Python
1
IN_PROGRESS = 'in_progress'

формируются

PENDING class-attribute instance-attribute

Python
1
PENDING = 'pending'

задание в очереди

CancellationType

Bases: StrEnum

Тип отмены отправления:

  • client — клиентская.
  • ozon — отменено Ozon.
  • seller — отменено продавцом.

CLIENT class-attribute instance-attribute

Python
1
CLIENT = 'client'

клиентская отмена.

NULL class-attribute instance-attribute

Python
1
NULL = ''

неизвестно

OZON class-attribute instance-attribute

Python
1
OZON = 'ozon'

отменено Ozon.

SELLER class-attribute instance-attribute

Python
1
SELLER = 'seller'

отменено Продавцом.

PostingStatus

Bases: StrEnum

Статус отправления:

  • acceptance_in_progress — идёт приёмка,
  • arbitration — арбитраж,
  • awaiting_approve — ожидает подтверждения,
  • awaiting_deliver — ожидает отгрузки,
  • awaiting_packaging — ожидает упаковки,
  • awaiting_registration — ожидает регистрации,
  • awaiting_verification — создано,
  • cancelled — отменено,
  • cancelled_from_split_pending — отменено,
  • client_arbitration — клиентский арбитраж доставки,
  • delivered — доставлено,
  • delivering — доставляется,
  • driver_pickup — у водителя,
  • not_accepted — не принят на сортировочном центре,
  • sent_by_seller — отправлено продавцом.

ACCEPTANCE_IN_PROGRESS class-attribute instance-attribute

Python
1
ACCEPTANCE_IN_PROGRESS = 'acceptance_in_progress'

идёт приёмка

ARBITRATION class-attribute instance-attribute

Python
1
ARBITRATION = 'arbitration'

арбитраж

AWAITING_APPROVE class-attribute instance-attribute

Python
1
AWAITING_APPROVE = 'awaiting_approve'

ожидает подтверждения

AWAITING_DELIVER class-attribute instance-attribute

Python
1
AWAITING_DELIVER = 'awaiting_deliver'

ожидает отгрузки

AWAITING_PACKAGING class-attribute instance-attribute

Python
1
AWAITING_PACKAGING = 'awaiting_packaging'

ожидает упаковки

AWAITING_REGISTRATION class-attribute instance-attribute

Python
1
AWAITING_REGISTRATION = 'awaiting_packaging'

ожидает регистрации

AWAITING_VERIFICATION class-attribute instance-attribute

Python
1
AWAITING_VERIFICATION = 'awaiting_verification'

создано

CANCELLED class-attribute instance-attribute

Python
1
CANCELLED = 'cancelled'

отменено

CANCELLED_FROM_SPLIT_PENDING class-attribute instance-attribute

Python
1
CANCELLED_FROM_SPLIT_PENDING = 'cancelled_from_split_pending'

отменено

CLIENT_ARBITRATION class-attribute instance-attribute

Python
1
CLIENT_ARBITRATION = 'client_arbitration'

клиентский арбитраж доставки

DELIVERED class-attribute instance-attribute

Python
1
DELIVERED = 'delivered'

доставлено

DELIVERING class-attribute instance-attribute

Python
1
DELIVERING = 'delivering'

доставляется

DRIVER_PICKUP class-attribute instance-attribute

Python
1
DRIVER_PICKUP = 'driver_pickup'

у водителя

NOT_ACCEPTED class-attribute instance-attribute

Python
1
NOT_ACCEPTED = 'not_accepted'

не принят на сортировочном центре

SENT_BY_SELLER class-attribute instance-attribute

Python
1
SENT_BY_SELLER = 'sent_by_seller'

отправлено продавцом

PostingSubstatus

Bases: StrEnum

Подстатус отправления:

  • posting_acceptance_in_progress— идёт приёмка,
  • posting_in_arbitration — арбитраж,
  • posting_created — создано,
  • posting_in_carriage — в перевозке,
  • posting_not_in_carriage — не добавлено в перевозку,
  • posting_registered — зарегистрировано,
  • posting_transferring_to_delivery (status=awaiting_deliver) — передаётся в доставку,
  • posting_awaiting_passport_data — ожидает паспортных данных,
  • posting_awaiting_registration — ожидает регистрации,
  • posting_registration_error — ошибка регистрации,
  • posting_transferring_to_delivery (status=awaiting_registration) — передаётся курьеру,
  • posting_split_pending — создано,
  • posting_canceled — отменено,
  • posting_in_client_arbitration — клиентский арбитраж доставки,
  • posting_delivered — доставлено,
  • posting_received — получено,
  • posting_conditionally_delivered — условно доставлено,
  • posting_in_courier_service — курьер в пути,
  • posting_in_pickup_point — в пункте выдачи,
  • posting_on_way_to_city — в пути в ваш город,
  • posting_on_way_to_pickup_point — в пути в пункт выдачи,
  • posting_returned_to_warehouse — возвращено на склад,
  • posting_transferred_to_courier_service — передаётся в службу доставки,
  • posting_driver_pick_up — у водителя,
  • posting_not_in_sort_center — не принято на сортировочном центре,
  • sent_by_seller — отправлено продавцом.

POSTING_ACCEPTANCE_IN_PROGRESS class-attribute instance-attribute

Python
1
POSTING_ACCEPTANCE_IN_PROGRESS = 'posting_acceptance_in_progress'

идёт приёмка

POSTING_AWAITING_PASSPORT_DATA class-attribute instance-attribute

Python
1
POSTING_AWAITING_PASSPORT_DATA = 'posting_awaiting_passport_data'

ожидает паспортных данных

POSTING_AWAITING_REGISTRATION class-attribute instance-attribute

Python
1
POSTING_AWAITING_REGISTRATION = 'posting_awaiting_registration'

ожидает регистрации

POSTING_CANCELED class-attribute instance-attribute

Python
1
POSTING_CANCELED = 'posting_canceled'

отменено

POSTING_CONDITIONALLY_DELIVERED class-attribute instance-attribute

Python
1
POSTING_CONDITIONALLY_DELIVERED = 'posting_conditionally_delivered'

условно доставлено

POSTING_CREATED class-attribute instance-attribute

Python
1
POSTING_CREATED = 'posting_created'

создано

POSTING_DELIVERED class-attribute instance-attribute

Python
1
POSTING_DELIVERED = 'posting_delivered'

доставлено

POSTING_DRIVER_PICK_UP class-attribute instance-attribute

Python
1
POSTING_DRIVER_PICK_UP = 'posting_driver_pick_up'

у водителя

POSTING_IN_ARBITRATION class-attribute instance-attribute

Python
1
POSTING_IN_ARBITRATION = 'posting_in_arbitration'

арбитраж

POSTING_IN_CARRIAGE class-attribute instance-attribute

Python
1
POSTING_IN_CARRIAGE = 'posting_in_carriage'

в перевозке

POSTING_IN_CLIENT_ARBITRATION class-attribute instance-attribute

Python
1
POSTING_IN_CLIENT_ARBITRATION = 'posting_in_client_arbitration'

клиентский арбитраж доставки

POSTING_IN_COURIER_SERVICE class-attribute instance-attribute

Python
1
POSTING_IN_COURIER_SERVICE = 'posting_in_courier_service'

курьер в пути

POSTING_IN_PICKUP_POINT class-attribute instance-attribute

Python
1
POSTING_IN_PICKUP_POINT = 'posting_in_pickup_point'

в пункте выдачи

POSTING_NOT_IN_CARRIAGE class-attribute instance-attribute

Python
1
POSTING_NOT_IN_CARRIAGE = 'posting_not_in_carriage'

не добавлено в перевозку

POSTING_NOT_IN_SORT_CENTER class-attribute instance-attribute

Python
1
POSTING_NOT_IN_SORT_CENTER = 'posting_not_in_sort_center'

не принято на сортировочном центре

POSTING_ON_WAY_TO_CITY class-attribute instance-attribute

Python
1
POSTING_ON_WAY_TO_CITY = 'posting_on_way_to_city'

в пути в ваш город

POSTING_ON_WAY_TO_PICKUP_POINT class-attribute instance-attribute

Python
1
POSTING_ON_WAY_TO_PICKUP_POINT = 'posting_on_way_to_pickup_point'

в пути в пункт выдачи

POSTING_RECEIVED class-attribute instance-attribute

Python
1
POSTING_RECEIVED = 'posting_received'

получено

POSTING_REGISTERED class-attribute instance-attribute

Python
1
POSTING_REGISTERED = 'posting_registered'

зарегистрировано

POSTING_REGISTRATION_ERROR class-attribute instance-attribute

Python
1
POSTING_REGISTRATION_ERROR = 'posting_registration_error'

ошибка регистрации

POSTING_RETURNED_TO_WAREHOUSE class-attribute instance-attribute

Python
1
POSTING_RETURNED_TO_WAREHOUSE = 'posting_returned_to_warehouse'

возвращено на склад

POSTING_SPLIT_PENDING class-attribute instance-attribute

Python
1
POSTING_SPLIT_PENDING = 'posting_split_pending'

создано

POSTING_TRANSFERRED_TO_COURIER_SERVICE class-attribute instance-attribute

Python
1
POSTING_TRANSFERRED_TO_COURIER_SERVICE = 'posting_transferred_to_courier_service'

передаётся в службу доставки

POSTING_TRANSFERRING_TO_DELIVERY class-attribute instance-attribute

Python
1
POSTING_TRANSFERRING_TO_DELIVERY = 'posting_transferring_to_delivery'

передаётся в доставку или передается курьеру

SENT_BY_SELLER class-attribute instance-attribute

Python
1
SENT_BY_SELLER = 'sent_by_seller'

отправлено продавцом

SHIP_PENDING class-attribute instance-attribute

Python
1
SHIP_PENDING = 'ship_pending'

в процессе сборки

PrrOptionEnum

Bases: StrEnum

Код услуги погрузочно-разгрузочных работ:

  • lift — подъём на лифте.
  • stairs — подъём по лестнице.
  • none — покупатель отказался от услуги, поднимать товары не нужно.
  • delivery_default — доставка включена в стоимость, по условиям оферты нужно доставить товар на этаж. Параметр актуален для КГТ-отправлений с доставкой силами продавца или интегрированной службой.

DELIVERY_DEFAULT class-attribute instance-attribute

Python
1
DELIVERY_DEFAULT = 'delivery_default'

доставка включена в стоимость, по условиям оферты нужно доставить товар на этаж

LIFT class-attribute instance-attribute

Python
1
LIFT = 'lift'

подъём на лифте

NONE class-attribute instance-attribute

Python
1
NONE = 'none'

покупатель отказался от услуги, поднимать товары не нужно

NULL class-attribute instance-attribute

Python
1
NULL = ''

не указано

STAIRS class-attribute instance-attribute

Python
1
STAIRS = 'stairs'

подъём по лестнице

TplIntegrationType

Bases: StrEnum

Тип интеграции со службой доставки:

  • ozon — доставка службой Ozon.
  • 3pl_tracking — доставка интегрированной службой.
  • non_integrated — доставка сторонней службой.
  • aggregator — доставка через партнёрскую доставку Ozon.

AGGREGATOR class-attribute instance-attribute

Python
1
AGGREGATOR = 'aggregator'

доставка через партнёрскую доставку Ozon

NON_INTEGRATED class-attribute instance-attribute

Python
1
NON_INTEGRATED = 'non_integrated'

доставка сторонней службой

OZON class-attribute instance-attribute

Python
1
OZON = 'ozon'

доставка службой Ozon

THIRD_PL_TRACKING class-attribute instance-attribute

Python
1
THIRD_PL_TRACKING = '3pl_tracking'

доставка интегрированной службой