/** * Документация 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. */ /** * Статус рейтинга: * - `UNKNOWN` — не определён; * - `OK` — хороший; * - `WARNING` — показатели требуют внимания; * - `CRITICAL` — критичный. * * @export */ export declare const RatingStatusEnum: { readonly UNKNOWN: "UNKNOWN"; readonly OK: "OK"; readonly WARNING: "WARNING"; readonly CRITICAL: "CRITICAL"; }; export type RatingStatusEnum = typeof RatingStatusEnum[keyof typeof RatingStatusEnum]; export declare function instanceOfRatingStatusEnum(value: any): boolean; export declare function RatingStatusEnumFromJSON(json: any): RatingStatusEnum; export declare function RatingStatusEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingStatusEnum; export declare function RatingStatusEnumToJSON(value?: RatingStatusEnum | null): any;