EncryptedMedicalHouseContract constructor
EncryptedMedicalHouseContract({
- int? unsubscriptionReasonId,
- int? status,
- String? contractId,
- int? validFrom,
- int? validTo,
- String? mmNihii,
- String? hcpId,
- ContractChangeType? changeType,
- String? parentContractId,
- String? changedBy,
- int? startOfContract,
- int? startOfCoverage,
- int? endOfContract,
- int? endOfCoverage,
- bool? kine,
- bool? gp,
- bool? ptd,
- bool? nurse,
- bool? noKine,
- bool? noGp,
- bool? noNurse,
- int? ptdStart,
- int? ptdEnd,
- int? ptdLastInvoiced,
- int? startOfSuspension,
- int? endOfSuspension,
- SuspensionReason? suspensionReason,
- String? suspensionSource,
- bool? forcedSuspension,
- MhcSignatureType? signatureType,
- Map<
String, String> ? options, - Map<
String, String> ? receipts, - Base64String? encryptedSelf,
Implementation
EncryptedMedicalHouseContract({
int? unsubscriptionReasonId,
int? status,
String? contractId,
int? validFrom,
int? validTo,
String? mmNihii,
String? hcpId,
ContractChangeType? changeType,
String? parentContractId,
String? changedBy,
int? startOfContract,
int? startOfCoverage,
int? endOfContract,
int? endOfCoverage,
bool? kine,
bool? gp,
bool? ptd,
bool? nurse,
bool? noKine,
bool? noGp,
bool? noNurse,
int? ptdStart,
int? ptdEnd,
int? ptdLastInvoiced,
int? startOfSuspension,
int? endOfSuspension,
SuspensionReason? suspensionReason,
String? suspensionSource,
bool? forcedSuspension,
MhcSignatureType? signatureType,
Map<String, String>? options,
Map<String, String>? receipts,
Base64String? encryptedSelf
}) : contractId = contractId ?? null,
validFrom = validFrom ?? null,
validTo = validTo ?? null,
mmNihii = mmNihii ?? null,
hcpId = hcpId ?? null,
changeType = changeType ?? null,
parentContractId = parentContractId ?? null,
changedBy = changedBy ?? null,
startOfContract = startOfContract ?? null,
startOfCoverage = startOfCoverage ?? null,
endOfContract = endOfContract ?? null,
endOfCoverage = endOfCoverage ?? null,
kine = kine ?? false,
gp = gp ?? false,
ptd = ptd ?? false,
nurse = nurse ?? false,
noKine = noKine ?? false,
noGp = noGp ?? false,
noNurse = noNurse ?? false,
ptdStart = ptdStart ?? null,
ptdEnd = ptdEnd ?? null,
ptdLastInvoiced = ptdLastInvoiced ?? null,
startOfSuspension = startOfSuspension ?? null,
endOfSuspension = endOfSuspension ?? null,
suspensionReason = suspensionReason ?? null,
suspensionSource = suspensionSource ?? null,
forcedSuspension = forcedSuspension ?? false,
signatureType = signatureType ?? null,
options = options ?? {},
receipts = receipts ?? {},
encryptedSelf = encryptedSelf ?? null,
_unsubscriptionReasonId = unsubscriptionReasonId ?? null,
_status = status ?? null;