/** * 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. */ /** * Alumni/former employee information * @export * @interface TalentAlumniSchema */ export interface TalentAlumniSchema { /** * * @type {boolean} * @memberof TalentAlumniSchema */ isFormerEmployee?: boolean; /** * * @type {number} * @memberof TalentAlumniSchema */ previousTenureMonths?: number | null; /** * * @type {boolean} * @memberof TalentAlumniSchema */ wantsToReturn?: boolean | null; } /** * Check if a given object implements the TalentAlumniSchema interface. */ export declare function instanceOfTalentAlumniSchema(value: object): value is TalentAlumniSchema; export declare function TalentAlumniSchemaFromJSON(json: any): TalentAlumniSchema; export declare function TalentAlumniSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentAlumniSchema; export declare function TalentAlumniSchemaToJSON(json: any): TalentAlumniSchema; export declare function TalentAlumniSchemaToJSONTyped(value?: TalentAlumniSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentAlumniSchema.d.ts.map