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