/** * 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. */ /** * The tenant's virtual employee hosting this meeting - display * identity ONLY (name + avatarUrl), so the public lobby can say * "You'll be meeting with {name}" with the right face. Null when * unresolvable (legacy tenants). Never carries email/phone/ * presence - this is a guest surface. * @export * @interface MeetingLobbyAttributesSchemaHost */ export interface MeetingLobbyAttributesSchemaHost { /** * * @type {string} * @memberof MeetingLobbyAttributesSchemaHost */ name?: string; /** * * @type {string} * @memberof MeetingLobbyAttributesSchemaHost */ avatarUrl?: string; /** * * @type {boolean} * @memberof MeetingLobbyAttributesSchemaHost */ isBoe?: boolean; } /** * Check if a given object implements the MeetingLobbyAttributesSchemaHost interface. */ export declare function instanceOfMeetingLobbyAttributesSchemaHost(value: object): value is MeetingLobbyAttributesSchemaHost; export declare function MeetingLobbyAttributesSchemaHostFromJSON(json: any): MeetingLobbyAttributesSchemaHost; export declare function MeetingLobbyAttributesSchemaHostFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingLobbyAttributesSchemaHost; export declare function MeetingLobbyAttributesSchemaHostToJSON(json: any): MeetingLobbyAttributesSchemaHost; export declare function MeetingLobbyAttributesSchemaHostToJSONTyped(value?: MeetingLobbyAttributesSchemaHost | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingLobbyAttributesSchemaHost.d.ts.map