86 lines
3.2 KiB
TypeScript
86 lines
3.2 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.
|
||
*/
|
||
/**
|
||
*
|
||
* @export
|
||
* @interface V1QuestionInfoResponse
|
||
*/
|
||
export interface V1QuestionInfoResponse {
|
||
/**
|
||
* Количество ответов на вопрос.
|
||
* @type {number}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
answers_count?: number;
|
||
/**
|
||
* Автор вопроса.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
author_name?: string;
|
||
/**
|
||
* Идентификатор вопроса.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
id?: string;
|
||
/**
|
||
* Ссылка на товар.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
product_url?: string;
|
||
/**
|
||
* Дата публикации вопроса.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
published_at?: string;
|
||
/**
|
||
* Ссылка на вопрос.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
question_link?: string;
|
||
/**
|
||
* Идентификатор товара в системе Ozon — SKU.
|
||
* @type {number}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
sku?: number;
|
||
/**
|
||
* Статус вопроса:
|
||
* - `NEW` — новый,
|
||
* - `ALL` — все вопросы,
|
||
* - `VIEWED` — просмотренный,
|
||
* - `PROCESSED` — обработанный,
|
||
* - `UNPROCESSED` — необработанный.
|
||
*
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
status?: string;
|
||
/**
|
||
* Текст вопроса.
|
||
* @type {string}
|
||
* @memberof V1QuestionInfoResponse
|
||
*/
|
||
text?: string;
|
||
}
|
||
/**
|
||
* Check if a given object implements the V1QuestionInfoResponse interface.
|
||
*/
|
||
export declare function instanceOfV1QuestionInfoResponse(value: object): value is V1QuestionInfoResponse;
|
||
export declare function V1QuestionInfoResponseFromJSON(json: any): V1QuestionInfoResponse;
|
||
export declare function V1QuestionInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): V1QuestionInfoResponse;
|
||
export declare function V1QuestionInfoResponseToJSON(value?: V1QuestionInfoResponse | null): any;
|