DecryptedInsurability constructor
DecryptedInsurability({})
Implementation
DecryptedInsurability({
Map<String, String>? parameters,
bool? hospitalisation,
bool? ambulatory,
bool? dental,
String? identificationNumber,
String? insuranceId,
int? startDate,
int? endDate,
String? titularyId,
Base64String? encryptedSelf
}) : parameters = parameters ?? {},
hospitalisation = hospitalisation ?? null,
ambulatory = ambulatory ?? null,
dental = dental ?? null,
identificationNumber = identificationNumber ?? null,
insuranceId = insuranceId ?? null,
startDate = startDate ?? null,
endDate = endDate ?? null,
titularyId = titularyId ?? null,
encryptedSelf = encryptedSelf ?? null;