/** * 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 { NoteRelationshipsReportDataSchema } from './NoteRelationshipsReportDataSchema'; /** * * @export * @interface NoteRelationshipsReportSchema */ export interface NoteRelationshipsReportSchema { /** * * @type {NoteRelationshipsReportDataSchema} * @memberof NoteRelationshipsReportSchema */ data?: NoteRelationshipsReportDataSchema | null; } /** * Check if a given object implements the NoteRelationshipsReportSchema interface. */ export declare function instanceOfNoteRelationshipsReportSchema(value: object): value is NoteRelationshipsReportSchema; export declare function NoteRelationshipsReportSchemaFromJSON(json: any): NoteRelationshipsReportSchema; export declare function NoteRelationshipsReportSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoteRelationshipsReportSchema; export declare function NoteRelationshipsReportSchemaToJSON(json: any): NoteRelationshipsReportSchema; export declare function NoteRelationshipsReportSchemaToJSONTyped(value?: NoteRelationshipsReportSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NoteRelationshipsReportSchema.d.ts.map