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