/** * 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 { CallRelationshipsCandidateDataSchema } from './CallRelationshipsCandidateDataSchema'; /** * External candidate principal. Set when fromType=candidate (inbound) or toType=candidate (outbound). * @export * @interface CallRelationshipsCandidateSchema */ export interface CallRelationshipsCandidateSchema { /** * * @type {CallRelationshipsCandidateDataSchema} * @memberof CallRelationshipsCandidateSchema */ data?: CallRelationshipsCandidateDataSchema | null; } /** * Check if a given object implements the CallRelationshipsCandidateSchema interface. */ export declare function instanceOfCallRelationshipsCandidateSchema(value: object): value is CallRelationshipsCandidateSchema; export declare function CallRelationshipsCandidateSchemaFromJSON(json: any): CallRelationshipsCandidateSchema; export declare function CallRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsCandidateSchema; export declare function CallRelationshipsCandidateSchemaToJSON(json: any): CallRelationshipsCandidateSchema; export declare function CallRelationshipsCandidateSchemaToJSONTyped(value?: CallRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsCandidateSchema.d.ts.map