/** * 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 { NoteRelationshipsOperationSchema } from './NoteRelationshipsOperationSchema'; import type { NoteRelationshipsCandidateSchema } from './NoteRelationshipsCandidateSchema'; import type { NoteRelationshipsReportSchema } from './NoteRelationshipsReportSchema'; /** * * @export * @interface NoteRelationshipsSchema */ export interface NoteRelationshipsSchema { /** * * @type {NoteRelationshipsCandidateSchema} * @memberof NoteRelationshipsSchema */ candidate?: NoteRelationshipsCandidateSchema; /** * * @type {NoteRelationshipsReportSchema} * @memberof NoteRelationshipsSchema */ report?: NoteRelationshipsReportSchema; /** * * @type {NoteRelationshipsOperationSchema} * @memberof NoteRelationshipsSchema */ operation?: NoteRelationshipsOperationSchema; } /** * Check if a given object implements the NoteRelationshipsSchema interface. */ export declare function instanceOfNoteRelationshipsSchema(value: object): value is NoteRelationshipsSchema; export declare function NoteRelationshipsSchemaFromJSON(json: any): NoteRelationshipsSchema; export declare function NoteRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoteRelationshipsSchema; export declare function NoteRelationshipsSchemaToJSON(json: any): NoteRelationshipsSchema; export declare function NoteRelationshipsSchemaToJSONTyped(value?: NoteRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NoteRelationshipsSchema.d.ts.map