/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ChatResourceSchema } from './ChatResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface ChatsSchema */ export interface ChatsSchema { /** * * @type {Array} * @memberof ChatsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof ChatsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof ChatsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the ChatsSchema interface. */ export declare function instanceOfChatsSchema(value: object): value is ChatsSchema; export declare function ChatsSchemaFromJSON(json: any): ChatsSchema; export declare function ChatsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatsSchema; export declare function ChatsSchemaToJSON(json: any): ChatsSchema; export declare function ChatsSchemaToJSONTyped(value?: ChatsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatsSchema.d.ts.map