/**
* Документация 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 V1ReviewChangeStatusRequest
*/
export interface V1ReviewChangeStatusRequest {
/**
* Массив с идентификаторами отзывов от 1 до 100.
* @type {Array}
* @memberof V1ReviewChangeStatusRequest
*/
review_ids: Array;
/**
* Статус отзыва:
* - `PROCESSED` — обработанный,
* - `UNPROCESSED` — необработанный.
*
* @type {string}
* @memberof V1ReviewChangeStatusRequest
*/
status: string;
}
/**
* Check if a given object implements the V1ReviewChangeStatusRequest interface.
*/
export declare function instanceOfV1ReviewChangeStatusRequest(value: object): value is V1ReviewChangeStatusRequest;
export declare function V1ReviewChangeStatusRequestFromJSON(json: any): V1ReviewChangeStatusRequest;
export declare function V1ReviewChangeStatusRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1ReviewChangeStatusRequest;
export declare function V1ReviewChangeStatusRequestToJSON(value?: V1ReviewChangeStatusRequest | null): any;