73 lines
4.0 KiB
JavaScript
73 lines
4.0 KiB
JavaScript
"use strict";
|
||
/* tslint:disable */
|
||
/* eslint-disable */
|
||
/**
|
||
* Документация Ozon Seller API
|
||
* По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. <aside class=\"warning\">Обновляем корневой TLS/SSL-сертификат GlobalSign — вместо него будем использовать <a href=\"https://app.harica.gr/\">HARICA</a>.<br><a href=\"https://dev.ozon.ru/news/775-Izmeneniia-v-Ozon-API-migratsiia-kornevogo-sertifikata-UTs-Ozon/\">Подробнее о переходе на HARICA на платформе разработчиков Ozon for dev</a></aside> > [Инструкции по работе с маркетплейсом](https://seller-edu.ozon.ru) > [Информационная платформа и сообщество разработчиков Ozon for dev](https://dev.ozon.ru/)
|
||
*
|
||
* The version of the OpenAPI document: 2.1
|
||
*
|
||
*
|
||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||
* https://openapi-generator.tech
|
||
* Do not edit the class manually.
|
||
*/
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum = void 0;
|
||
exports.instanceOfCargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum = instanceOfCargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum;
|
||
exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSON = CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSON;
|
||
exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSONTyped = CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSONTyped;
|
||
exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumToJSON = CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumToJSON;
|
||
/**
|
||
* Статус грузоместа:
|
||
* - `UNSPECIFIED` — не определён;
|
||
* - `READY_TO_SUPPLY` — готово к отгрузке;
|
||
* - `REFUSED` — отказано;
|
||
* - `ON_WAREHOUSE` — на складе размещения;
|
||
* - `NOT_DELIVERED` — не сдано;
|
||
* - `ACCEPTING` — приёмка;
|
||
* - `PROCESSED` — обработано;
|
||
* - `ON_POINT_SHIPMENT` — на точке отгрузки;
|
||
* - `ON_TRANSIT_WAREHOUSE` — в пути;
|
||
* - `LOST` — потеряно;
|
||
* - `CREATED` — создано;
|
||
* - `DELETED` — удалено;
|
||
* - `DECLARED_IN_TRANSPORT_CARGO` — заявлено в транспортном грузоместе.
|
||
*
|
||
* @export
|
||
*/
|
||
exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum = {
|
||
UNSPECIFIED: 'UNSPECIFIED',
|
||
READY_TO_SUPPLY: 'READY_TO_SUPPLY',
|
||
REFUSED: 'REFUSED',
|
||
ON_WAREHOUSE: 'ON_WAREHOUSE',
|
||
NOT_DELIVERED: 'NOT_DELIVERED',
|
||
ACCEPTING: 'ACCEPTING',
|
||
PROCESSED: 'PROCESSED',
|
||
ON_POINT_SHIPMENT: 'ON_POINT_SHIPMENT',
|
||
ON_TRANSIT_WAREHOUSE: 'ON_TRANSIT_WAREHOUSE',
|
||
LOST: 'LOST',
|
||
CREATED: 'CREATED',
|
||
DELETED: 'DELETED',
|
||
DECLARED_IN_TRANSPORT_CARGO: 'DECLARED_IN_TRANSPORT_CARGO'
|
||
};
|
||
function instanceOfCargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum(value) {
|
||
for (const key in exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum) {
|
||
if (Object.prototype.hasOwnProperty.call(exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum, key)) {
|
||
if (exports.CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnum[key] === value) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSON(json) {
|
||
return CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSONTyped(json, false);
|
||
}
|
||
function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumFromJSONTyped(json, ignoreDiscriminator) {
|
||
return json;
|
||
}
|
||
function CargoesV2CargoesGetResponseSuppliesCargoesTrackingInfoStatusEnumToJSON(value) {
|
||
return value;
|
||
}
|