/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { ChatResourceSchema } from './ChatResourceSchema'; /** * * @export * @interface ChatSchema */ export interface ChatSchema { /** * * @type {ChatResourceSchema} * @memberof ChatSchema */ data?: ChatResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof ChatSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ChatSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ChatSchema interface. */ export declare function instanceOfChatSchema(value: object): value is ChatSchema; export declare function ChatSchemaFromJSON(json: any): ChatSchema; export declare function ChatSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatSchema; export declare function ChatSchemaToJSON(json: any): ChatSchema; export declare function ChatSchemaToJSONTyped(value?: ChatSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatSchema.d.ts.map