/** * 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 { CallRelationshipsTalentDataSchema } from './CallRelationshipsTalentDataSchema'; /** * External talent principal. Set when fromType=talent (inbound) or toType=talent (outbound). * @export * @interface CallRelationshipsTalentSchema */ export interface CallRelationshipsTalentSchema { /** * * @type {CallRelationshipsTalentDataSchema} * @memberof CallRelationshipsTalentSchema */ data?: CallRelationshipsTalentDataSchema | null; } /** * Check if a given object implements the CallRelationshipsTalentSchema interface. */ export declare function instanceOfCallRelationshipsTalentSchema(value: object): value is CallRelationshipsTalentSchema; export declare function CallRelationshipsTalentSchemaFromJSON(json: any): CallRelationshipsTalentSchema; export declare function CallRelationshipsTalentSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsTalentSchema; export declare function CallRelationshipsTalentSchemaToJSON(json: any): CallRelationshipsTalentSchema; export declare function CallRelationshipsTalentSchemaToJSONTyped(value?: CallRelationshipsTalentSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsTalentSchema.d.ts.map