/** * 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 { AttemptRelationshipsFilesSchema } from './AttemptRelationshipsFilesSchema'; import type { AttemptRelationshipsCandidateSchema } from './AttemptRelationshipsCandidateSchema'; import type { AttemptRelationshipsJobSchema } from './AttemptRelationshipsJobSchema'; import type { AttemptRelationshipsReportSchema } from './AttemptRelationshipsReportSchema'; import type { AttemptRelationshipsAssessmentSchema } from './AttemptRelationshipsAssessmentSchema'; /** * * @export * @interface AttemptRelationshipsSchema */ export interface AttemptRelationshipsSchema { /** * * @type {AttemptRelationshipsAssessmentSchema} * @memberof AttemptRelationshipsSchema */ assessment?: AttemptRelationshipsAssessmentSchema; /** * * @type {AttemptRelationshipsCandidateSchema} * @memberof AttemptRelationshipsSchema */ candidate?: AttemptRelationshipsCandidateSchema; /** * * @type {AttemptRelationshipsJobSchema} * @memberof AttemptRelationshipsSchema */ job?: AttemptRelationshipsJobSchema; /** * * @type {AttemptRelationshipsReportSchema} * @memberof AttemptRelationshipsSchema */ report?: AttemptRelationshipsReportSchema; /** * * @type {AttemptRelationshipsFilesSchema} * @memberof AttemptRelationshipsSchema */ files?: AttemptRelationshipsFilesSchema; } /** * Check if a given object implements the AttemptRelationshipsSchema interface. */ export declare function instanceOfAttemptRelationshipsSchema(value: object): value is AttemptRelationshipsSchema; export declare function AttemptRelationshipsSchemaFromJSON(json: any): AttemptRelationshipsSchema; export declare function AttemptRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsSchema; export declare function AttemptRelationshipsSchemaToJSON(json: any): AttemptRelationshipsSchema; export declare function AttemptRelationshipsSchemaToJSONTyped(value?: AttemptRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsSchema.d.ts.map