/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export declare class GenderType { constructor(json: JSON | any); genderCode?: string; modificationDate?: string; origin?: GenderType.OriginEnum; startDate?: Date; value?: GenderType.ValueEnum; } export declare namespace GenderType { type OriginEnum = "BCSS_KSZ" | "RN_RR"; const OriginEnum: { BCSSKSZ: OriginEnum; RNRR: OriginEnum; }; type ValueEnum = "MALE" | "FEMALE" | "UNKNOWN"; const ValueEnum: { MALE: ValueEnum; FEMALE: ValueEnum; UNKNOWN: ValueEnum; }; }