/** * 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 { MeetingRelationshipsJobSchema } from './MeetingRelationshipsJobSchema'; import type { MeetingRelationshipsFilesSchema } from './MeetingRelationshipsFilesSchema'; import type { MeetingRelationshipsCalendarSchema } from './MeetingRelationshipsCalendarSchema'; import type { MeetingRelationshipsHostSchema } from './MeetingRelationshipsHostSchema'; import type { MeetingRelationshipsTalentSchema } from './MeetingRelationshipsTalentSchema'; import type { MeetingRelationshipsCandidateSchema } from './MeetingRelationshipsCandidateSchema'; import type { MeetingRelationshipsConversationSchema } from './MeetingRelationshipsConversationSchema'; import type { MeetingRelationshipsAttendeesSchema } from './MeetingRelationshipsAttendeesSchema'; import type { MeetingRelationshipsTeamSchema } from './MeetingRelationshipsTeamSchema'; import type { MeetingRelationshipsLinksSchema } from './MeetingRelationshipsLinksSchema'; /** * * @export * @interface MeetingRelationshipsSchema */ export interface MeetingRelationshipsSchema { /** * * @type {MeetingRelationshipsFilesSchema} * @memberof MeetingRelationshipsSchema */ files?: MeetingRelationshipsFilesSchema; /** * * @type {MeetingRelationshipsLinksSchema} * @memberof MeetingRelationshipsSchema */ links?: MeetingRelationshipsLinksSchema; /** * * @type {MeetingRelationshipsTeamSchema} * @memberof MeetingRelationshipsSchema */ team?: MeetingRelationshipsTeamSchema; /** * * @type {MeetingRelationshipsCalendarSchema} * @memberof MeetingRelationshipsSchema */ calendar?: MeetingRelationshipsCalendarSchema; /** * * @type {MeetingRelationshipsConversationSchema} * @memberof MeetingRelationshipsSchema */ conversation?: MeetingRelationshipsConversationSchema; /** * * @type {MeetingRelationshipsCandidateSchema} * @memberof MeetingRelationshipsSchema */ candidate?: MeetingRelationshipsCandidateSchema; /** * * @type {MeetingRelationshipsTalentSchema} * @memberof MeetingRelationshipsSchema */ talent?: MeetingRelationshipsTalentSchema; /** * * @type {MeetingRelationshipsHostSchema} * @memberof MeetingRelationshipsSchema */ host?: MeetingRelationshipsHostSchema; /** * * @type {MeetingRelationshipsJobSchema} * @memberof MeetingRelationshipsSchema */ job?: MeetingRelationshipsJobSchema; /** * * @type {MeetingRelationshipsAttendeesSchema} * @memberof MeetingRelationshipsSchema */ attendees?: MeetingRelationshipsAttendeesSchema; } /** * Check if a given object implements the MeetingRelationshipsSchema interface. */ export declare function instanceOfMeetingRelationshipsSchema(value: object): value is MeetingRelationshipsSchema; export declare function MeetingRelationshipsSchemaFromJSON(json: any): MeetingRelationshipsSchema; export declare function MeetingRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsSchema; export declare function MeetingRelationshipsSchemaToJSON(json: any): MeetingRelationshipsSchema; export declare function MeetingRelationshipsSchemaToJSONTyped(value?: MeetingRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsSchema.d.ts.map