/** * Документация 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. */ 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;