@@ -37,17 +37,19 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
3737 /// <param name="accountGuid">accountGuid.</param>
3838 /// <param name="accountNumber">accountNumber.</param>
3939 /// <param name="guid">guid.</param>
40+ /// <param name="loanGuarantor">loanGuarantor.</param>
4041 /// <param name="institutionNumber">institutionNumber.</param>
4142 /// <param name="memberGuid">memberGuid.</param>
4243 /// <param name="passedValidation">passedValidation.</param>
4344 /// <param name="routingNumber">routingNumber.</param>
4445 /// <param name="transitNumber">transitNumber.</param>
4546 /// <param name="userGuid">userGuid.</param>
46- public AccountNumberResponse ( string accountGuid = default ( string ) , string accountNumber = default ( string ) , string guid = default ( string ) , string institutionNumber = default ( string ) , string memberGuid = default ( string ) , bool ? passedValidation = default ( bool ? ) , string routingNumber = default ( string ) , string transitNumber = default ( string ) , string userGuid = default ( string ) )
47+ public AccountNumberResponse ( string accountGuid = default ( string ) , string accountNumber = default ( string ) , string guid = default ( string ) , string loanGuarantor = default ( string ) , string institutionNumber = default ( string ) , string memberGuid = default ( string ) , bool ? passedValidation = default ( bool ? ) , string routingNumber = default ( string ) , string transitNumber = default ( string ) , string userGuid = default ( string ) )
4748 {
4849 this . AccountGuid = accountGuid ;
4950 this . AccountNumber = accountNumber ;
5051 this . Guid = guid ;
52+ this . LoanGuarantor = loanGuarantor ;
5153 this . InstitutionNumber = institutionNumber ;
5254 this . MemberGuid = memberGuid ;
5355 this . PassedValidation = passedValidation ;
@@ -77,6 +79,13 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
7779 [ DataMember ( Name = "guid" , EmitDefaultValue = true ) ]
7880 public string Guid { get ; set ; }
7981
82+ /// <summary>
83+ /// Gets or Sets LoanGuarantor
84+ /// </summary>
85+ /// <example>U.S. DEPARTMENT OF EDUCATION</example>
86+ [ DataMember ( Name = "loan_guarantor" , EmitDefaultValue = true ) ]
87+ public string LoanGuarantor { get ; set ; }
88+
8089 /// <summary>
8190 /// Gets or Sets InstitutionNumber
8291 /// </summary>
@@ -130,6 +139,7 @@ public override string ToString()
130139 sb . Append ( " AccountGuid: " ) . Append ( AccountGuid ) . Append ( "\n " ) ;
131140 sb . Append ( " AccountNumber: " ) . Append ( AccountNumber ) . Append ( "\n " ) ;
132141 sb . Append ( " Guid: " ) . Append ( Guid ) . Append ( "\n " ) ;
142+ sb . Append ( " LoanGuarantor: " ) . Append ( LoanGuarantor ) . Append ( "\n " ) ;
133143 sb . Append ( " InstitutionNumber: " ) . Append ( InstitutionNumber ) . Append ( "\n " ) ;
134144 sb . Append ( " MemberGuid: " ) . Append ( MemberGuid ) . Append ( "\n " ) ;
135145 sb . Append ( " PassedValidation: " ) . Append ( PassedValidation ) . Append ( "\n " ) ;
@@ -186,6 +196,11 @@ public bool Equals(AccountNumberResponse input)
186196 ( this . Guid != null &&
187197 this . Guid . Equals ( input . Guid ) )
188198 ) &&
199+ (
200+ this . LoanGuarantor == input . LoanGuarantor ||
201+ ( this . LoanGuarantor != null &&
202+ this . LoanGuarantor . Equals ( input . LoanGuarantor ) )
203+ ) &&
189204 (
190205 this . InstitutionNumber == input . InstitutionNumber ||
191206 ( this . InstitutionNumber != null &&
@@ -239,6 +254,10 @@ public override int GetHashCode()
239254 {
240255 hashCode = ( hashCode * 59 ) + this . Guid . GetHashCode ( ) ;
241256 }
257+ if ( this . LoanGuarantor != null )
258+ {
259+ hashCode = ( hashCode * 59 ) + this . LoanGuarantor . GetHashCode ( ) ;
260+ }
242261 if ( this . InstitutionNumber != null )
243262 {
244263 hashCode = ( hashCode * 59 ) + this . InstitutionNumber . GetHashCode ( ) ;
0 commit comments