/** * 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. */ /** * * @export * @interface AttemptRelationshipsReportDataSchema */ export interface AttemptRelationshipsReportDataSchema { /** * * @type {AttemptRelationshipsReportDataSchemaTypeEnum} * @memberof AttemptRelationshipsReportDataSchema */ type?: AttemptRelationshipsReportDataSchemaTypeEnum; /** * * @type {string} * @memberof AttemptRelationshipsReportDataSchema */ id?: string; } /** * @export */ export declare const AttemptRelationshipsReportDataSchemaTypeEnum: { readonly Files: "files"; }; export type AttemptRelationshipsReportDataSchemaTypeEnum = typeof AttemptRelationshipsReportDataSchemaTypeEnum[keyof typeof AttemptRelationshipsReportDataSchemaTypeEnum]; /** * Check if a given object implements the AttemptRelationshipsReportDataSchema interface. */ export declare function instanceOfAttemptRelationshipsReportDataSchema(value: object): value is AttemptRelationshipsReportDataSchema; export declare function AttemptRelationshipsReportDataSchemaFromJSON(json: any): AttemptRelationshipsReportDataSchema; export declare function AttemptRelationshipsReportDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsReportDataSchema; export declare function AttemptRelationshipsReportDataSchemaToJSON(json: any): AttemptRelationshipsReportDataSchema; export declare function AttemptRelationshipsReportDataSchemaToJSONTyped(value?: AttemptRelationshipsReportDataSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsReportDataSchema.d.ts.map