/** * 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 { MeetingRelationshipsTalentSchemaData } from './MeetingRelationshipsTalentSchemaData'; /** * Talent the meeting is about, when known. * @export * @interface MeetingRelationshipsTalentSchema */ export interface MeetingRelationshipsTalentSchema { /** * * @type {MeetingRelationshipsTalentSchemaData} * @memberof MeetingRelationshipsTalentSchema */ data?: MeetingRelationshipsTalentSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsTalentSchema interface. */ export declare function instanceOfMeetingRelationshipsTalentSchema(value: object): value is MeetingRelationshipsTalentSchema; export declare function MeetingRelationshipsTalentSchemaFromJSON(json: any): MeetingRelationshipsTalentSchema; export declare function MeetingRelationshipsTalentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsTalentSchema; export declare function MeetingRelationshipsTalentSchemaToJSON(json: any): MeetingRelationshipsTalentSchema; export declare function MeetingRelationshipsTalentSchemaToJSONTyped(value?: MeetingRelationshipsTalentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsTalentSchema.d.ts.map