61 lines
4.2 KiB
TypeScript
61 lines
4.2 KiB
TypeScript
/**
|
||
* Документация 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.
|
||
*/
|
||
import type { NotificationV1SetNotificationRequestTypeEnum } from './NotificationV1SetNotificationRequestTypeEnum';
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface NotificationV1SetNotificationRequest
|
||
*/
|
||
export interface NotificationV1SetNotificationRequest {
|
||
/**
|
||
* Типы уведомлений:
|
||
* - `TYPE_NEW_MESSAGE` — новое сообщение в чате;
|
||
* - `TYPE_UPDATE_MESSAGE` — изменение сообщения в чате;
|
||
* - `TYPE_MESSAGE_READ` — ваше сообщение прочитано покупателем или поддержкой;
|
||
* - `TYPE_CHAT_CLOSED` — чат закрыт;
|
||
* - `TYPE_NEW_POSTING` — новое отправление;
|
||
* - `TYPE_POSTING_CANCELLED` — отмена отправления;
|
||
* - `TYPE_STATE_CHANGED` — изменение статуса отправления;
|
||
* - `TYPE_DELIVERY_DATE_CHANGED` — изменение даты доставки отправления;
|
||
* - `TYPE_CUTOFF_DATE_CHANGED` — изменение даты отгрузки отправления;
|
||
* - `TYPE_CREATE_ITEM` — создание товара или ошибка при его создании;
|
||
* - `TYPE_UPDATE_ITEM` — обновление товара или ошибка при обновлении;
|
||
* - `TYPE_CREATE_OR_UPDATE_ITEM` — создание и обновление товара или ошибка в процессе;
|
||
* - `TYPE_STOCKS_CHANGED` — изменение остатков на складах продавца;
|
||
* - `TYPE_FBO_POSTING_NEW` — новое отправление FBO;
|
||
* - `TYPE_FBO_POSTING_CANCELLED` — отмена отправления FBO;
|
||
* - `TYPE_FBO_POSTING_STATE_CHANGED` — изменение статуса отправления FBO;
|
||
* - `TYPE_FBO_POSTING_DELIVERY_DATE_CHANGED` — изменение даты доставки отправления FBO;
|
||
* - `TYPE_FBO_STOCKS_CHANGED` — изменение остатков на складах Ozon;
|
||
* - `TYPE_ORDER_NEW` — новый заказ;
|
||
* - `TYPE_ORDER_CANCELLED` — отмена заказа;
|
||
* - `TYPE_ORDER_STATE_CHANGED` — изменение статуса заказа.
|
||
*
|
||
* @type {Array<NotificationV1SetNotificationRequestTypeEnum>}
|
||
* @memberof NotificationV1SetNotificationRequest
|
||
*/
|
||
types: Array<NotificationV1SetNotificationRequestTypeEnum>;
|
||
/**
|
||
* URL-адрес.
|
||
* @type {string}
|
||
* @memberof NotificationV1SetNotificationRequest
|
||
*/
|
||
url: string;
|
||
}
|
||
/**
|
||
* Check if a given object implements the NotificationV1SetNotificationRequest interface.
|
||
*/
|
||
export declare function instanceOfNotificationV1SetNotificationRequest(value: object): value is NotificationV1SetNotificationRequest;
|
||
export declare function NotificationV1SetNotificationRequestFromJSON(json: any): NotificationV1SetNotificationRequest;
|
||
export declare function NotificationV1SetNotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationV1SetNotificationRequest;
|
||
export declare function NotificationV1SetNotificationRequestToJSON(value?: NotificationV1SetNotificationRequest | null): any;
|