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