/** * 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 { TenantRelationshipsBoeUserSchemaData } from './TenantRelationshipsBoeUserSchemaData'; /** * User leading the meeting. May be a human recruiter or a boe user (e.g. usr-boe-interviewer for AI-hosted sessions). Setting this also writes the top-level hostId scalar (HostIdIndex GSI key) so the 'my meetings' dashboard query is a direct GSI hit. Always points at the users resource - there is no separate 'aiHost' shape because Boe IS a user. * @export * @interface MeetingRelationshipsHostSchema */ export interface MeetingRelationshipsHostSchema { /** * * @type {TenantRelationshipsBoeUserSchemaData} * @memberof MeetingRelationshipsHostSchema */ data?: TenantRelationshipsBoeUserSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsHostSchema interface. */ export declare function instanceOfMeetingRelationshipsHostSchema(value: object): value is MeetingRelationshipsHostSchema; export declare function MeetingRelationshipsHostSchemaFromJSON(json: any): MeetingRelationshipsHostSchema; export declare function MeetingRelationshipsHostSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsHostSchema; export declare function MeetingRelationshipsHostSchemaToJSON(json: any): MeetingRelationshipsHostSchema; export declare function MeetingRelationshipsHostSchemaToJSONTyped(value?: MeetingRelationshipsHostSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsHostSchema.d.ts.map