/** * 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 TalentAttributesDesiredContractLengthSchema */ export interface TalentAttributesDesiredContractLengthSchema { /** * * @type {string} * @memberof TalentAttributesDesiredContractLengthSchema */ duration?: string | null; /** * * @type {boolean} * @memberof TalentAttributesDesiredContractLengthSchema */ isAssumed?: boolean; /** * * @type {TalentAttributesDesiredContractLengthSchemaConfidenceEnum} * @memberof TalentAttributesDesiredContractLengthSchema */ confidence?: TalentAttributesDesiredContractLengthSchemaConfidenceEnum; /** * * @type {string} * @memberof TalentAttributesDesiredContractLengthSchema */ flexibility?: string | null; /** * * @type {string} * @memberof TalentAttributesDesiredContractLengthSchema */ reasoning?: string; } /** * @export */ export declare const TalentAttributesDesiredContractLengthSchemaConfidenceEnum: { readonly Low: "Low"; readonly Medium: "Medium"; readonly High: "High"; }; export type TalentAttributesDesiredContractLengthSchemaConfidenceEnum = typeof TalentAttributesDesiredContractLengthSchemaConfidenceEnum[keyof typeof TalentAttributesDesiredContractLengthSchemaConfidenceEnum]; /** * Check if a given object implements the TalentAttributesDesiredContractLengthSchema interface. */ export declare function instanceOfTalentAttributesDesiredContractLengthSchema(value: object): value is TalentAttributesDesiredContractLengthSchema; export declare function TalentAttributesDesiredContractLengthSchemaFromJSON(json: any): TalentAttributesDesiredContractLengthSchema; export declare function TalentAttributesDesiredContractLengthSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentAttributesDesiredContractLengthSchema; export declare function TalentAttributesDesiredContractLengthSchemaToJSON(json: any): TalentAttributesDesiredContractLengthSchema; export declare function TalentAttributesDesiredContractLengthSchemaToJSONTyped(value?: TalentAttributesDesiredContractLengthSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentAttributesDesiredContractLengthSchema.d.ts.map