/** * 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 { DocumentResourceSchema } from './DocumentResourceSchema'; /** * * @export * @interface DocumentSchema */ export interface DocumentSchema { /** * * @type {DocumentResourceSchema} * @memberof DocumentSchema */ data?: DocumentResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof DocumentSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof DocumentSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the DocumentSchema interface. */ export declare function instanceOfDocumentSchema(value: object): value is DocumentSchema; export declare function DocumentSchemaFromJSON(json: any): DocumentSchema; export declare function DocumentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentSchema; export declare function DocumentSchemaToJSON(json: any): DocumentSchema; export declare function DocumentSchemaToJSONTyped(value?: DocumentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DocumentSchema.d.ts.map