DepositSwitchGetResponse constructor

DepositSwitchGetResponse({
  1. required String depositSwitchId,
  2. required String? targetAccountId,
  3. required String? targetItemId,
  4. required DepositSwitchGetResponseState state,
  5. DepositSwitchGetResponseSwitchMethod? switchMethod,
  6. required bool? accountHasMultipleAllocations,
  7. required bool? isAllocatedRemainder,
  8. required double? percentAllocated,
  9. required double? amountAllocated,
  10. String? employerName,
  11. String? employerId,
  12. String? institutionName,
  13. String? institutionId,
  14. required DateTime dateCreated,
  15. required DateTime? dateCompleted,
  16. required String requestId,
})

Implementation

DepositSwitchGetResponse({
  required this.depositSwitchId,
  required this.targetAccountId,
  required this.targetItemId,
  required this.state,
  this.switchMethod,
  required this.accountHasMultipleAllocations,
  required this.isAllocatedRemainder,
  required this.percentAllocated,
  required this.amountAllocated,
  this.employerName,
  this.employerId,
  this.institutionName,
  this.institutionId,
  required this.dateCreated,
  required this.dateCompleted,
  required this.requestId,
});