125 lines
4.4 KiB
TypeScript
125 lines
4.4 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 { ReviewInfoResponseVideo } from './ReviewInfoResponseVideo';
|
||
import type { ReviewInfoResponsePhoto } from './ReviewInfoResponsePhoto';
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface V1ReviewInfoResponse
|
||
*/
|
||
export interface V1ReviewInfoResponse {
|
||
/**
|
||
* Количество комментариев к отзыву.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
comments_amount?: number;
|
||
/**
|
||
* Количество дизлайков на отзыве.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
dislikes_amount?: number;
|
||
/**
|
||
* Идентификатор отзыва.
|
||
* @type {string}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
id?: string;
|
||
/**
|
||
* `true`, если отзыв участвует в подсчёте рейтинга.
|
||
*
|
||
* @type {boolean}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
is_rating_participant?: boolean;
|
||
/**
|
||
* Количество лайков на отзыве.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
likes_amount?: number;
|
||
/**
|
||
* Статус заказа, на который покупатель оставил отзыв:
|
||
* - `DELIVERED` — доставлен,
|
||
* - `CANCELLED` — отменён.
|
||
*
|
||
* @type {string}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
order_status?: string;
|
||
/**
|
||
* Информация об изображении.
|
||
* @type {Array<ReviewInfoResponsePhoto>}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
photos?: Array<ReviewInfoResponsePhoto>;
|
||
/**
|
||
* Количество изображений у отзыва.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
photos_amount?: number;
|
||
/**
|
||
* Дата публикации отзыва.
|
||
* @type {string}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
published_at?: string;
|
||
/**
|
||
* Оценка отзыва.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
rating?: number;
|
||
/**
|
||
* Идентификатор товара в системе Ozon — SKU.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
sku?: number;
|
||
/**
|
||
* Статус отзыва:
|
||
* - `UNPROCESSED` — не обработан,
|
||
* - `PROCESSED` — обработан.
|
||
*
|
||
* @type {string}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
status?: string;
|
||
/**
|
||
* Текст отзыва.
|
||
* @type {string}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
text?: string;
|
||
/**
|
||
* Информация о видео.
|
||
* @type {Array<ReviewInfoResponseVideo>}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
videos?: Array<ReviewInfoResponseVideo>;
|
||
/**
|
||
* Количество видео у отзыва.
|
||
* @type {number}
|
||
* @memberof V1ReviewInfoResponse
|
||
*/
|
||
videos_amount?: number;
|
||
}
|
||
/**
|
||
* Check if a given object implements the V1ReviewInfoResponse interface.
|
||
*/
|
||
export declare function instanceOfV1ReviewInfoResponse(value: object): value is V1ReviewInfoResponse;
|
||
export declare function V1ReviewInfoResponseFromJSON(json: any): V1ReviewInfoResponse;
|
||
export declare function V1ReviewInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1ReviewInfoResponse;
|
||
export declare function V1ReviewInfoResponseToJSON(value?: V1ReviewInfoResponse | null): any;
|