/** * Kogui * Kogui App * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Los campos para personas. */ export interface PersonasFields { /** * Documento de identidad del Responsable */ documentoID?: string; /** * Tipo de documento del responsable. */ tipoDocumento?: PersonasFields.TipoDocumentoEnum; /** * Titulo del responsable */ nombre?: string; /** * Apellido del responsable */ apellido?: string; /** * Telefono del responsable */ telefono?: string; /** * Correo del responsable */ correo?: string; /** * Genero del responsable */ genero?: PersonasFields.GeneroEnum; /** * Fecha de nacimiento del responsable. */ nacimiento?: string; /** * Monto abonado asignado para esta persona */ abono?: number; /** * Monto debe, asignado para esta persona, */ readonly debe?: number; /** * La nota para la persona */ nota?: string; } export declare namespace PersonasFields { type TipoDocumentoEnum = 'CEDULA_CIUDADANIA' | 'PASAPORTE' | 'CEDULA_EXTRANJERIA' | 'OTRO'; const TipoDocumentoEnum: { CEDULACIUDADANIA: TipoDocumentoEnum; PASAPORTE: TipoDocumentoEnum; CEDULAEXTRANJERIA: TipoDocumentoEnum; OTRO: TipoDocumentoEnum; }; type GeneroEnum = 'F' | 'M'; const GeneroEnum: { F: GeneroEnum; M: GeneroEnum; }; }