@@ -2849,11 +2849,13 @@ class TokenMaskedType {
2849
2849
if ( ( 'tokenSource' in obj ) && ( obj . tokenSource != null ) ) { this . setTokenSource ( obj . tokenSource ) ; }
2850
2850
if ( ( 'tokenNumber' in obj ) && ( obj . tokenNumber != null ) ) { this . setTokenNumber ( obj . tokenNumber ) ; }
2851
2851
if ( ( 'expirationDate' in obj ) && ( obj . expirationDate != null ) ) { this . setExpirationDate ( obj . expirationDate ) ; }
2852
+ if ( ( 'tokenRequestorId' in obj ) && ( obj . tokenRequestorId != null ) ) { this . setTokenRequestorId ( obj . tokenRequestorId ) ; }
2852
2853
}
2853
2854
else {
2854
2855
this . setTokenSource ( null ) ;
2855
2856
this . setTokenNumber ( null ) ;
2856
2857
this . setExpirationDate ( null ) ;
2858
+ this . setTokenRequestorId ( null ) ;
2857
2859
}
2858
2860
logger . debug ( 'Exit TokenMaskedType constructor' ) ;
2859
2861
}
@@ -2864,6 +2866,8 @@ class TokenMaskedType {
2864
2866
getTokenNumber ( ) { if ( 'tokenNumber' in this ) { return this . tokenNumber ; } }
2865
2867
setExpirationDate ( p_expirationDate ) { this . expirationDate = p_expirationDate ; }
2866
2868
getExpirationDate ( ) { if ( 'expirationDate' in this ) { return this . expirationDate ; } }
2869
+ setTokenRequestorId ( p_tokenRequestorId ) { this . tokenRequestorId = p_tokenRequestorId ; }
2870
+ getTokenRequestorId ( ) { if ( 'tokenRequestorId' in this ) { return this . tokenRequestorId ; } }
2867
2871
}
2868
2872
2869
2873
module . exports . TokenMaskedType = TokenMaskedType ;
@@ -4823,12 +4827,18 @@ class CreditCardType extends CreditCardSimpleType {
4823
4827
if ( ( 'cardCode' in obj ) && ( obj . cardCode != null ) ) { this . setCardCode ( obj . cardCode ) ; }
4824
4828
if ( ( 'isPaymentToken' in obj ) && ( obj . isPaymentToken != null ) ) { this . setIsPaymentToken ( obj . isPaymentToken ) ; }
4825
4829
if ( ( 'cryptogram' in obj ) && ( obj . cryptogram != null ) ) { this . setCryptogram ( obj . cryptogram ) ; }
4830
+ if ( ( 'tokenRequestorName' in obj ) && ( obj . tokenRequestorName != null ) ) { this . setTokenRequestorName ( obj . tokenRequestorName ) ; }
4831
+ if ( ( 'tokenRequestorId' in obj ) && ( obj . tokenRequestorId != null ) ) { this . setTokenRequestorId ( obj . tokenRequestorId ) ; }
4832
+ if ( ( 'tokenRequestorEci' in obj ) && ( obj . tokenRequestorEci != null ) ) { this . setTokenRequestorEci ( obj . tokenRequestorEci ) ; }
4826
4833
}
4827
4834
else {
4828
4835
super ( ) ;
4829
4836
this . setCardCode ( null ) ;
4830
4837
this . setIsPaymentToken ( null ) ;
4831
4838
this . setCryptogram ( null ) ;
4839
+ this . setTokenRequestorName ( null ) ;
4840
+ this . setTokenRequestorId ( null ) ;
4841
+ this . setTokenRequestorEci ( null ) ;
4832
4842
}
4833
4843
logger . debug ( 'Exit CreditCardType constructor' ) ;
4834
4844
}
@@ -4839,6 +4849,12 @@ class CreditCardType extends CreditCardSimpleType {
4839
4849
getIsPaymentToken ( ) { if ( 'isPaymentToken' in this ) { return this . isPaymentToken ; } }
4840
4850
setCryptogram ( p_cryptogram ) { this . cryptogram = p_cryptogram ; }
4841
4851
getCryptogram ( ) { if ( 'cryptogram' in this ) { return this . cryptogram ; } }
4852
+ setTokenRequestorName ( p_tokenRequestorName ) { this . tokenRequestorName = p_tokenRequestorName ; }
4853
+ getTokenRequestorName ( ) { if ( 'tokenRequestorName' in this ) { return this . tokenRequestorName ; } }
4854
+ setTokenRequestorId ( p_tokenRequestorId ) { this . tokenRequestorId = p_tokenRequestorId ; }
4855
+ getTokenRequestorId ( ) { if ( 'tokenRequestorId' in this ) { return this . tokenRequestorId ; } }
4856
+ setTokenRequestorEci ( p_tokenRequestorEci ) { this . tokenRequestorEci = p_tokenRequestorEci ; }
4857
+ getTokenRequestorEci ( ) { if ( 'tokenRequestorEci' in this ) { return this . tokenRequestorEci ; } }
4842
4858
}
4843
4859
4844
4860
module . exports . CreditCardType = CreditCardType ;
0 commit comments