/** * 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 { AttemptRelationshipsReportDataSchema } from './AttemptRelationshipsReportDataSchema'; /** * Generated PDF report for this attempt's evaluation. Populated post-evaluation. * @export * @interface AttemptRelationshipsReportSchema */ export interface AttemptRelationshipsReportSchema { /** * * @type {AttemptRelationshipsReportDataSchema} * @memberof AttemptRelationshipsReportSchema */ data?: AttemptRelationshipsReportDataSchema | null; } /** * Check if a given object implements the AttemptRelationshipsReportSchema interface. */ export declare function instanceOfAttemptRelationshipsReportSchema(value: object): value is AttemptRelationshipsReportSchema; export declare function AttemptRelationshipsReportSchemaFromJSON(json: any): AttemptRelationshipsReportSchema; export declare function AttemptRelationshipsReportSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsReportSchema; export declare function AttemptRelationshipsReportSchemaToJSON(json: any): AttemptRelationshipsReportSchema; export declare function AttemptRelationshipsReportSchemaToJSONTyped(value?: AttemptRelationshipsReportSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsReportSchema.d.ts.map