/** * 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 AttemptRelationshipsJobDataSchema */ export interface AttemptRelationshipsJobDataSchema { /** * * @type {AttemptRelationshipsJobDataSchemaTypeEnum} * @memberof AttemptRelationshipsJobDataSchema */ type?: AttemptRelationshipsJobDataSchemaTypeEnum; /** * * @type {string} * @memberof AttemptRelationshipsJobDataSchema */ id?: string; } /** * @export */ export declare const AttemptRelationshipsJobDataSchemaTypeEnum: { readonly Jobs: "jobs"; }; export type AttemptRelationshipsJobDataSchemaTypeEnum = typeof AttemptRelationshipsJobDataSchemaTypeEnum[keyof typeof AttemptRelationshipsJobDataSchemaTypeEnum]; /** * Check if a given object implements the AttemptRelationshipsJobDataSchema interface. */ export declare function instanceOfAttemptRelationshipsJobDataSchema(value: object): value is AttemptRelationshipsJobDataSchema; export declare function AttemptRelationshipsJobDataSchemaFromJSON(json: any): AttemptRelationshipsJobDataSchema; export declare function AttemptRelationshipsJobDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttemptRelationshipsJobDataSchema; export declare function AttemptRelationshipsJobDataSchemaToJSON(json: any): AttemptRelationshipsJobDataSchema; export declare function AttemptRelationshipsJobDataSchemaToJSONTyped(value?: AttemptRelationshipsJobDataSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AttemptRelationshipsJobDataSchema.d.ts.map