/** * Документация 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. */ /** * * @export * @interface NotificationV1EnableNotificationRequest */ export interface NotificationV1EnableNotificationRequest { /** * Передайте: * - `true` — чтобы включить уведомления; * - `false` — чтобы выключить уведомления. * * @type {boolean} * @memberof NotificationV1EnableNotificationRequest */ enabled: boolean; /** * Идентификатор URL-адреса. * @type {number} * @memberof NotificationV1EnableNotificationRequest */ id: number; } /** * Check if a given object implements the NotificationV1EnableNotificationRequest interface. */ export declare function instanceOfNotificationV1EnableNotificationRequest(value: object): value is NotificationV1EnableNotificationRequest; export declare function NotificationV1EnableNotificationRequestFromJSON(json: any): NotificationV1EnableNotificationRequest; export declare function NotificationV1EnableNotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationV1EnableNotificationRequest; export declare function NotificationV1EnableNotificationRequestToJSON(value?: NotificationV1EnableNotificationRequest | null): any;