/** * 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 { NoteResourceSchema } from './NoteResourceSchema'; import type { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface NotesSchema */ export interface NotesSchema { /** * * @type {Array} * @memberof NotesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof NotesSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof NotesSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the NotesSchema interface. */ export declare function instanceOfNotesSchema(value: object): value is NotesSchema; export declare function NotesSchemaFromJSON(json: any): NotesSchema; export declare function NotesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotesSchema; export declare function NotesSchemaToJSON(json: any): NotesSchema; export declare function NotesSchemaToJSONTyped(value?: NotesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NotesSchema.d.ts.map