/** * Документация 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 ReviewInfoResponsePhoto */ export interface ReviewInfoResponsePhoto { /** * Высота. * @type {number} * @memberof ReviewInfoResponsePhoto */ height?: number; /** * Ссылка на изображение. * @type {string} * @memberof ReviewInfoResponsePhoto */ url?: string; /** * Ширина. * @type {number} * @memberof ReviewInfoResponsePhoto */ width?: number; } /** * Check if a given object implements the ReviewInfoResponsePhoto interface. */ export declare function instanceOfReviewInfoResponsePhoto(value: object): value is ReviewInfoResponsePhoto; export declare function ReviewInfoResponsePhotoFromJSON(json: any): ReviewInfoResponsePhoto; export declare function ReviewInfoResponsePhotoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReviewInfoResponsePhoto; export declare function ReviewInfoResponsePhotoToJSON(value?: ReviewInfoResponsePhoto | null): any;