/** * 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 { ConversationRelationshipsCandidateDataSchema } from './ConversationRelationshipsCandidateDataSchema'; /** * * @export * @interface ConversationRelationshipsCandidateSchema */ export interface ConversationRelationshipsCandidateSchema { /** * * @type {ConversationRelationshipsCandidateDataSchema} * @memberof ConversationRelationshipsCandidateSchema */ data?: ConversationRelationshipsCandidateDataSchema | null; } /** * Check if a given object implements the ConversationRelationshipsCandidateSchema interface. */ export declare function instanceOfConversationRelationshipsCandidateSchema(value: object): value is ConversationRelationshipsCandidateSchema; export declare function ConversationRelationshipsCandidateSchemaFromJSON(json: any): ConversationRelationshipsCandidateSchema; export declare function ConversationRelationshipsCandidateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationRelationshipsCandidateSchema; export declare function ConversationRelationshipsCandidateSchemaToJSON(json: any): ConversationRelationshipsCandidateSchema; export declare function ConversationRelationshipsCandidateSchemaToJSONTyped(value?: ConversationRelationshipsCandidateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConversationRelationshipsCandidateSchema.d.ts.map