/** * 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 { CallRelationshipsUserDataSchema } from './CallRelationshipsUserDataSchema'; /** * Internal human user (employee). Reserved for 3-way conference recruiters (boe + recruiter + candidate). Today this is typically null on boe-mediated 1:1 calls - the boe AI agent goes in `boeUser`, not here. * @export * @interface CallRelationshipsUserSchema */ export interface CallRelationshipsUserSchema { /** * * @type {CallRelationshipsUserDataSchema} * @memberof CallRelationshipsUserSchema */ data?: CallRelationshipsUserDataSchema | null; } /** * Check if a given object implements the CallRelationshipsUserSchema interface. */ export declare function instanceOfCallRelationshipsUserSchema(value: object): value is CallRelationshipsUserSchema; export declare function CallRelationshipsUserSchemaFromJSON(json: any): CallRelationshipsUserSchema; export declare function CallRelationshipsUserSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsUserSchema; export declare function CallRelationshipsUserSchemaToJSON(json: any): CallRelationshipsUserSchema; export declare function CallRelationshipsUserSchemaToJSONTyped(value?: CallRelationshipsUserSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsUserSchema.d.ts.map