@@ -2849,11 +2849,13 @@ class TokenMaskedType {
28492849 if ( ( 'tokenSource' in obj ) && ( obj . tokenSource != null ) ) { this . setTokenSource ( obj . tokenSource ) ; }
28502850 if ( ( 'tokenNumber' in obj ) && ( obj . tokenNumber != null ) ) { this . setTokenNumber ( obj . tokenNumber ) ; }
28512851 if ( ( 'expirationDate' in obj ) && ( obj . expirationDate != null ) ) { this . setExpirationDate ( obj . expirationDate ) ; }
2852+ if ( ( 'tokenRequestorId' in obj ) && ( obj . tokenRequestorId != null ) ) { this . setTokenRequestorId ( obj . tokenRequestorId ) ; }
28522853 }
28532854 else {
28542855 this . setTokenSource ( null ) ;
28552856 this . setTokenNumber ( null ) ;
28562857 this . setExpirationDate ( null ) ;
2858+ this . setTokenRequestorId ( null ) ;
28572859 }
28582860 logger . debug ( 'Exit TokenMaskedType constructor' ) ;
28592861 }
@@ -2864,6 +2866,8 @@ class TokenMaskedType {
28642866 getTokenNumber ( ) { if ( 'tokenNumber' in this ) { return this . tokenNumber ; } }
28652867 setExpirationDate ( p_expirationDate ) { this . expirationDate = p_expirationDate ; }
28662868 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 ; } }
28672871}
28682872
28692873module . exports . TokenMaskedType = TokenMaskedType ;
@@ -4823,12 +4827,18 @@ class CreditCardType extends CreditCardSimpleType {
48234827 if ( ( 'cardCode' in obj ) && ( obj . cardCode != null ) ) { this . setCardCode ( obj . cardCode ) ; }
48244828 if ( ( 'isPaymentToken' in obj ) && ( obj . isPaymentToken != null ) ) { this . setIsPaymentToken ( obj . isPaymentToken ) ; }
48254829 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 ) ; }
48264833 }
48274834 else {
48284835 super ( ) ;
48294836 this . setCardCode ( null ) ;
48304837 this . setIsPaymentToken ( null ) ;
48314838 this . setCryptogram ( null ) ;
4839+ this . setTokenRequestorName ( null ) ;
4840+ this . setTokenRequestorId ( null ) ;
4841+ this . setTokenRequestorEci ( null ) ;
48324842 }
48334843 logger . debug ( 'Exit CreditCardType constructor' ) ;
48344844 }
@@ -4839,6 +4849,12 @@ class CreditCardType extends CreditCardSimpleType {
48394849 getIsPaymentToken ( ) { if ( 'isPaymentToken' in this ) { return this . isPaymentToken ; } }
48404850 setCryptogram ( p_cryptogram ) { this . cryptogram = p_cryptogram ; }
48414851 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 ; } }
48424858}
48434859
48444860module . exports . CreditCardType = CreditCardType ;
0 commit comments