/** * 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 { AttemptRelationshipsJobDataSchema } from './AttemptRelationshipsJobDataSchema'; /** * Denormalised from the assessment template - the role this attempt is screening for. * @export * @interface AttemptRelationshipsJobSchema */ export interface AttemptRelationshipsJobSchema { /** * * @type {AttemptRelationshipsJobDataSchema} * @memberof AttemptRelationshipsJobSchema */ data?: AttemptRelationshipsJobDataSchema | null; } /** * Check if a given object implements the AttemptRelationshipsJobSchema interface. */ export declare function instanceOfAttemptRelationshipsJobSchema(value: object): value is AttemptRelationshipsJobSchema; export declare function AttemptRelationshipsJobSchemaFromJSON(json: any): AttemptRelationshipsJobSchema; export declare function AttemptRelationshipsJobSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsJobSchema; export declare function AttemptRelationshipsJobSchemaToJSON(json: any): AttemptRelationshipsJobSchema; export declare function AttemptRelationshipsJobSchemaToJSONTyped(value?: AttemptRelationshipsJobSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsJobSchema.d.ts.map