EncryptedMedicalHouseContract constructor

EncryptedMedicalHouseContract({
  1. int? unsubscriptionReasonId,
  2. int? status,
  3. String? contractId,
  4. int? validFrom,
  5. int? validTo,
  6. String? mmNihii,
  7. String? hcpId,
  8. ContractChangeType? changeType,
  9. String? parentContractId,
  10. String? changedBy,
  11. int? startOfContract,
  12. int? startOfCoverage,
  13. int? endOfContract,
  14. int? endOfCoverage,
  15. bool? kine,
  16. bool? gp,
  17. bool? ptd,
  18. bool? nurse,
  19. bool? noKine,
  20. bool? noGp,
  21. bool? noNurse,
  22. int? ptdStart,
  23. int? ptdEnd,
  24. int? ptdLastInvoiced,
  25. int? startOfSuspension,
  26. int? endOfSuspension,
  27. SuspensionReason? suspensionReason,
  28. String? suspensionSource,
  29. bool? forcedSuspension,
  30. MhcSignatureType? signatureType,
  31. Map<String, String>? options,
  32. Map<String, String>? receipts,
  33. 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;