/** * 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 { ChatAttributesSchema } from './ChatAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { ChatMetaSchema } from './ChatMetaSchema'; import type { ChatRelationshipsSchema } from './ChatRelationshipsSchema'; /** * * @export * @interface ChatResourceSchema */ export interface ChatResourceSchema { /** * * @type {ChatResourceSchemaTypeEnum} * @memberof ChatResourceSchema */ type: ChatResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof ChatResourceSchema */ id: string; /** * * @type {ChatAttributesSchema} * @memberof ChatResourceSchema */ attributes: ChatAttributesSchema; /** * * @type {ChatRelationshipsSchema} * @memberof ChatResourceSchema */ relationships?: ChatRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof ChatResourceSchema */ links?: ResourceLinksSchema; /** * * @type {ChatMetaSchema} * @memberof ChatResourceSchema */ meta?: ChatMetaSchema; } /** * @export */ export declare const ChatResourceSchemaTypeEnum: { readonly Chats: "chats"; }; export type ChatResourceSchemaTypeEnum = typeof ChatResourceSchemaTypeEnum[keyof typeof ChatResourceSchemaTypeEnum]; /** * Check if a given object implements the ChatResourceSchema interface. */ export declare function instanceOfChatResourceSchema(value: object): value is ChatResourceSchema; export declare function ChatResourceSchemaFromJSON(json: any): ChatResourceSchema; export declare function ChatResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatResourceSchema; export declare function ChatResourceSchemaToJSON(json: any): ChatResourceSchema; export declare function ChatResourceSchemaToJSONTyped(value?: ChatResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatResourceSchema.d.ts.map