/** * 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 { ConversationResourceSchema } from './ConversationResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface ConversationsSchema */ export interface ConversationsSchema { /** * * @type {Array} * @memberof ConversationsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof ConversationsSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof ConversationsSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the ConversationsSchema interface. */ export declare function instanceOfConversationsSchema(value: object): value is ConversationsSchema; export declare function ConversationsSchemaFromJSON(json: any): ConversationsSchema; export declare function ConversationsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationsSchema; export declare function ConversationsSchemaToJSON(json: any): ConversationsSchema; export declare function ConversationsSchemaToJSONTyped(value?: ConversationsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConversationsSchema.d.ts.map