"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Документация Ozon Seller API * По вопросам работы с Seller API обращайтесь в поддержку через личный кабинет. > [Инструкции по работе с маркетплейсом](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.NotificationV1SetNotificationRequestTypeEnum = void 0; exports.instanceOfNotificationV1SetNotificationRequestTypeEnum = instanceOfNotificationV1SetNotificationRequestTypeEnum; exports.NotificationV1SetNotificationRequestTypeEnumFromJSON = NotificationV1SetNotificationRequestTypeEnumFromJSON; exports.NotificationV1SetNotificationRequestTypeEnumFromJSONTyped = NotificationV1SetNotificationRequestTypeEnumFromJSONTyped; exports.NotificationV1SetNotificationRequestTypeEnumToJSON = NotificationV1SetNotificationRequestTypeEnumToJSON; /** * * @export */ exports.NotificationV1SetNotificationRequestTypeEnum = { 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 instanceOfNotificationV1SetNotificationRequestTypeEnum(value) { for (const key in exports.NotificationV1SetNotificationRequestTypeEnum) { if (Object.prototype.hasOwnProperty.call(exports.NotificationV1SetNotificationRequestTypeEnum, key)) { if (exports.NotificationV1SetNotificationRequestTypeEnum[key] === value) { return true; } } } return false; } function NotificationV1SetNotificationRequestTypeEnumFromJSON(json) { return NotificationV1SetNotificationRequestTypeEnumFromJSONTyped(json, false); } function NotificationV1SetNotificationRequestTypeEnumFromJSONTyped(json, ignoreDiscriminator) { return json; } function NotificationV1SetNotificationRequestTypeEnumToJSON(value) { return value; }