/** * 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 { ConversationRelationshipsJobDataSchema } from './ConversationRelationshipsJobDataSchema'; /** * * @export * @interface ConversationRelationshipsJobSchema */ export interface ConversationRelationshipsJobSchema { /** * * @type {ConversationRelationshipsJobDataSchema} * @memberof ConversationRelationshipsJobSchema */ data?: ConversationRelationshipsJobDataSchema | null; } /** * Check if a given object implements the ConversationRelationshipsJobSchema interface. */ export declare function instanceOfConversationRelationshipsJobSchema(value: object): value is ConversationRelationshipsJobSchema; export declare function ConversationRelationshipsJobSchemaFromJSON(json: any): ConversationRelationshipsJobSchema; export declare function ConversationRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationRelationshipsJobSchema; export declare function ConversationRelationshipsJobSchemaToJSON(json: any): ConversationRelationshipsJobSchema; export declare function ConversationRelationshipsJobSchemaToJSONTyped(value?: ConversationRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConversationRelationshipsJobSchema.d.ts.map