67 lines
3.6 KiB
JavaScript
67 lines
3.6 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.NotificationV1UpdateNotificationRequestTypeEnum = void 0;
|
||
exports.instanceOfNotificationV1UpdateNotificationRequestTypeEnum = instanceOfNotificationV1UpdateNotificationRequestTypeEnum;
|
||
exports.NotificationV1UpdateNotificationRequestTypeEnumFromJSON = NotificationV1UpdateNotificationRequestTypeEnumFromJSON;
|
||
exports.NotificationV1UpdateNotificationRequestTypeEnumFromJSONTyped = NotificationV1UpdateNotificationRequestTypeEnumFromJSONTyped;
|
||
exports.NotificationV1UpdateNotificationRequestTypeEnumToJSON = NotificationV1UpdateNotificationRequestTypeEnumToJSON;
|
||
/**
|
||
*
|
||
* @export
|
||
*/
|
||
exports.NotificationV1UpdateNotificationRequestTypeEnum = {
|
||
NEW_MESSAGE: 'TYPE_NEW_MESSAGE',
|
||
UPDATE_MESSAGE: 'TYPE_UPDATE_MESSAGE',
|
||
MESSAGE_READ: 'TYPE_MESSAGE_READ',
|
||
CHAT_CLOSED: 'TYPE_CHAT_CLOSED',
|
||
NEW_POSTING: 'TYPE_NEW_POSTING',
|
||
POSTING_CANCELLED: 'TYPE_POSTING_CANCELLED',
|
||
STATE_CHANGED: 'TYPE_STATE_CHANGED',
|
||
DELIVERY_DATE_CHANGED: 'TYPE_DELIVERY_DATE_CHANGED',
|
||
CUTOFF_DATE_CHANGED: 'TYPE_CUTOFF_DATE_CHANGED',
|
||
CREATE_ITEM: 'TYPE_CREATE_ITEM',
|
||
UPDATE_ITEM: 'TYPE_UPDATE_ITEM',
|
||
CREATE_OR_UPDATE_ITEM: 'TYPE_CREATE_OR_UPDATE_ITEM',
|
||
STOCKS_CHANGED: 'TYPE_STOCKS_CHANGED',
|
||
FBO_POSTING_NEW: 'TYPE_FBO_POSTING_NEW',
|
||
FBO_POSTING_CANCELLED: 'TYPE_FBO_POSTING_CANCELLED',
|
||
FBO_POSTING_STATE_CHANGED: 'TYPE_FBO_POSTING_STATE_CHANGED',
|
||
FBO_POSTING_DELIVERY_DATE_CHANGED: 'TYPE_FBO_POSTING_DELIVERY_DATE_CHANGED',
|
||
FBO_STOCKS_CHANGED: 'TYPE_FBO_STOCKS_CHANGED',
|
||
ORDER_NEW: 'TYPE_ORDER_NEW',
|
||
ORDER_CANCELLED: 'TYPE_ORDER_CANCELLED',
|
||
ORDER_STATE_CHANGED: 'TYPE_ORDER_STATE_CHANGED'
|
||
};
|
||
function instanceOfNotificationV1UpdateNotificationRequestTypeEnum(value) {
|
||
for (const key in exports.NotificationV1UpdateNotificationRequestTypeEnum) {
|
||
if (Object.prototype.hasOwnProperty.call(exports.NotificationV1UpdateNotificationRequestTypeEnum, key)) {
|
||
if (exports.NotificationV1UpdateNotificationRequestTypeEnum[key] === value) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function NotificationV1UpdateNotificationRequestTypeEnumFromJSON(json) {
|
||
return NotificationV1UpdateNotificationRequestTypeEnumFromJSONTyped(json, false);
|
||
}
|
||
function NotificationV1UpdateNotificationRequestTypeEnumFromJSONTyped(json, ignoreDiscriminator) {
|
||
return json;
|
||
}
|
||
function NotificationV1UpdateNotificationRequestTypeEnumToJSON(value) {
|
||
return value;
|
||
}
|