52 lines
2.3 KiB
TypeScript
52 lines
2.3 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 { ChatInfoChatTypeEnum } from './ChatInfoChatTypeEnum';
|
||
import type { ChatInfoChatStatusEnum } from './ChatInfoChatStatusEnum';
|
||
/**
|
||
* Информация о чате.
|
||
* @export
|
||
* @interface V3ChatDetailsInfo
|
||
*/
|
||
export interface V3ChatDetailsInfo {
|
||
/**
|
||
* Дата создания чата.
|
||
* @type {string}
|
||
* @memberof V3ChatDetailsInfo
|
||
*/
|
||
created_at?: string;
|
||
/**
|
||
* Идентификатор чата.
|
||
* @type {string}
|
||
* @memberof V3ChatDetailsInfo
|
||
*/
|
||
chat_id?: string;
|
||
/**
|
||
*
|
||
* @type {ChatInfoChatStatusEnum}
|
||
* @memberof V3ChatDetailsInfo
|
||
*/
|
||
chat_status?: ChatInfoChatStatusEnum;
|
||
/**
|
||
*
|
||
* @type {ChatInfoChatTypeEnum}
|
||
* @memberof V3ChatDetailsInfo
|
||
*/
|
||
chat_type?: ChatInfoChatTypeEnum;
|
||
}
|
||
/**
|
||
* Check if a given object implements the V3ChatDetailsInfo interface.
|
||
*/
|
||
export declare function instanceOfV3ChatDetailsInfo(value: object): value is V3ChatDetailsInfo;
|
||
export declare function V3ChatDetailsInfoFromJSON(json: any): V3ChatDetailsInfo;
|
||
export declare function V3ChatDetailsInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V3ChatDetailsInfo;
|
||
export declare function V3ChatDetailsInfoToJSON(value?: V3ChatDetailsInfo | null): any;
|