/** * 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 { MeetingAttendeeRelationshipsMeetingSchemaData } from './MeetingAttendeeRelationshipsMeetingSchemaData'; /** * Always present: the bespoke attendee serializer emits the owning meeting on every response (not governed by RELATIONSHIP_TYPES). * @export * @interface MeetingAttendeeRelationshipsMeetingSchema */ export interface MeetingAttendeeRelationshipsMeetingSchema { /** * * @type {MeetingAttendeeRelationshipsMeetingSchemaData} * @memberof MeetingAttendeeRelationshipsMeetingSchema */ data?: MeetingAttendeeRelationshipsMeetingSchemaData; } /** * Check if a given object implements the MeetingAttendeeRelationshipsMeetingSchema interface. */ export declare function instanceOfMeetingAttendeeRelationshipsMeetingSchema(value: object): value is MeetingAttendeeRelationshipsMeetingSchema; export declare function MeetingAttendeeRelationshipsMeetingSchemaFromJSON(json: any): MeetingAttendeeRelationshipsMeetingSchema; export declare function MeetingAttendeeRelationshipsMeetingSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingAttendeeRelationshipsMeetingSchema; export declare function MeetingAttendeeRelationshipsMeetingSchemaToJSON(json: any): MeetingAttendeeRelationshipsMeetingSchema; export declare function MeetingAttendeeRelationshipsMeetingSchemaToJSONTyped(value?: MeetingAttendeeRelationshipsMeetingSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingAttendeeRelationshipsMeetingSchema.d.ts.map