DepositSwitchGetResponse constructor
      
      DepositSwitchGetResponse({ 
    
    
- required String depositSwitchId,
- required String? targetAccountId,
- required String? targetItemId,
- required DepositSwitchGetResponseState state,
- DepositSwitchGetResponseSwitchMethod? switchMethod,
- required bool? accountHasMultipleAllocations,
- required bool? isAllocatedRemainder,
- required double? percentAllocated,
- required double? amountAllocated,
- String? employerName,
- String? employerId,
- String? institutionName,
- String? institutionId,
- required DateTime dateCreated,
- required DateTime? dateCompleted,
- 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,
});