/** * 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 { DocumentRelationshipsConversationSchema } from './DocumentRelationshipsConversationSchema'; import type { DocumentRelationshipsJobSchema } from './DocumentRelationshipsJobSchema'; import type { DocumentRelationshipsCandidateSchema } from './DocumentRelationshipsCandidateSchema'; /** * * @export * @interface DocumentRelationshipsSchema */ export interface DocumentRelationshipsSchema { /** * * @type {DocumentRelationshipsCandidateSchema} * @memberof DocumentRelationshipsSchema */ candidate?: DocumentRelationshipsCandidateSchema; /** * * @type {DocumentRelationshipsJobSchema} * @memberof DocumentRelationshipsSchema */ job?: DocumentRelationshipsJobSchema; /** * * @type {DocumentRelationshipsConversationSchema} * @memberof DocumentRelationshipsSchema */ conversation?: DocumentRelationshipsConversationSchema; } /** * Check if a given object implements the DocumentRelationshipsSchema interface. */ export declare function instanceOfDocumentRelationshipsSchema(value: object): value is DocumentRelationshipsSchema; export declare function DocumentRelationshipsSchemaFromJSON(json: any): DocumentRelationshipsSchema; export declare function DocumentRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentRelationshipsSchema; export declare function DocumentRelationshipsSchemaToJSON(json: any): DocumentRelationshipsSchema; export declare function DocumentRelationshipsSchemaToJSONTyped(value?: DocumentRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DocumentRelationshipsSchema.d.ts.map