@@ -73,6 +73,7 @@ class CheckoutPaymentMethod implements ModelInterface, ArrayAccess, \JsonSeriali
7373 'encryptedCardNumber ' => 'string ' ,
7474 'encryptedExpiryMonth ' => 'string ' ,
7575 'encryptedExpiryYear ' => 'string ' ,
76+ 'encryptedPassword ' => 'string ' ,
7677 'encryptedSecurityCode ' => 'string ' ,
7778 'expiryMonth ' => 'string ' ,
7879 'expiryYear ' => 'string ' ,
@@ -158,6 +159,7 @@ class CheckoutPaymentMethod implements ModelInterface, ArrayAccess, \JsonSeriali
158159 'encryptedCardNumber ' => null ,
159160 'encryptedExpiryMonth ' => null ,
160161 'encryptedExpiryYear ' => null ,
162+ 'encryptedPassword ' => null ,
161163 'encryptedSecurityCode ' => null ,
162164 'expiryMonth ' => null ,
163165 'expiryYear ' => null ,
@@ -241,6 +243,7 @@ class CheckoutPaymentMethod implements ModelInterface, ArrayAccess, \JsonSeriali
241243 'encryptedCardNumber ' => false ,
242244 'encryptedExpiryMonth ' => false ,
243245 'encryptedExpiryYear ' => false ,
246+ 'encryptedPassword ' => false ,
244247 'encryptedSecurityCode ' => false ,
245248 'expiryMonth ' => false ,
246249 'expiryYear ' => false ,
@@ -404,6 +407,7 @@ public function isNullableSetToNull(string $property): bool
404407 'encryptedCardNumber ' => 'encryptedCardNumber ' ,
405408 'encryptedExpiryMonth ' => 'encryptedExpiryMonth ' ,
406409 'encryptedExpiryYear ' => 'encryptedExpiryYear ' ,
410+ 'encryptedPassword ' => 'encryptedPassword ' ,
407411 'encryptedSecurityCode ' => 'encryptedSecurityCode ' ,
408412 'expiryMonth ' => 'expiryMonth ' ,
409413 'expiryYear ' => 'expiryYear ' ,
@@ -487,6 +491,7 @@ public function isNullableSetToNull(string $property): bool
487491 'encryptedCardNumber ' => 'setEncryptedCardNumber ' ,
488492 'encryptedExpiryMonth ' => 'setEncryptedExpiryMonth ' ,
489493 'encryptedExpiryYear ' => 'setEncryptedExpiryYear ' ,
494+ 'encryptedPassword ' => 'setEncryptedPassword ' ,
490495 'encryptedSecurityCode ' => 'setEncryptedSecurityCode ' ,
491496 'expiryMonth ' => 'setExpiryMonth ' ,
492497 'expiryYear ' => 'setExpiryYear ' ,
@@ -570,6 +575,7 @@ public function isNullableSetToNull(string $property): bool
570575 'encryptedCardNumber ' => 'getEncryptedCardNumber ' ,
571576 'encryptedExpiryMonth ' => 'getEncryptedExpiryMonth ' ,
572577 'encryptedExpiryYear ' => 'getEncryptedExpiryYear ' ,
578+ 'encryptedPassword ' => 'getEncryptedPassword ' ,
573579 'encryptedSecurityCode ' => 'getEncryptedSecurityCode ' ,
574580 'expiryMonth ' => 'getExpiryMonth ' ,
575581 'expiryYear ' => 'getExpiryYear ' ,
@@ -703,6 +709,7 @@ public function __construct(?array $data = null)
703709 $ this ->setIfExists ('encryptedCardNumber ' , $ data ?? [], null );
704710 $ this ->setIfExists ('encryptedExpiryMonth ' , $ data ?? [], null );
705711 $ this ->setIfExists ('encryptedExpiryYear ' , $ data ?? [], null );
712+ $ this ->setIfExists ('encryptedPassword ' , $ data ?? [], null );
706713 $ this ->setIfExists ('encryptedSecurityCode ' , $ data ?? [], null );
707714 $ this ->setIfExists ('expiryMonth ' , $ data ?? [], null );
708715 $ this ->setIfExists ('expiryYear ' , $ data ?? [], null );
@@ -1577,6 +1584,30 @@ public function setEncryptedExpiryYear($encryptedExpiryYear)
15771584 return $ this ;
15781585 }
15791586
1587+ /**
1588+ * Gets encryptedPassword
1589+ *
1590+ * @return string|null
1591+ */
1592+ public function getEncryptedPassword ()
1593+ {
1594+ return $ this ->container ['encryptedPassword ' ];
1595+ }
1596+
1597+ /**
1598+ * Sets encryptedPassword
1599+ *
1600+ * @param string|null $encryptedPassword This field contains an encrypted, one-time password or an authentication code provided by the cardholder.
1601+ *
1602+ * @return self
1603+ */
1604+ public function setEncryptedPassword ($ encryptedPassword )
1605+ {
1606+ $ this ->container ['encryptedPassword ' ] = $ encryptedPassword ;
1607+
1608+ return $ this ;
1609+ }
1610+
15801611 /**
15811612 * Gets encryptedSecurityCode
15821613 *
@@ -2070,7 +2101,7 @@ public function getShopperEmail()
20702101 /**
20712102 * Sets shopperEmail
20722103 *
2073- * @param string $shopperEmail
2104+ * @param string $shopperEmail
20742105 *
20752106 * @return self
20762107 */
@@ -2094,7 +2125,7 @@ public function getTelephoneNumber()
20942125 /**
20952126 * Sets telephoneNumber
20962127 *
2097- * @param string $telephoneNumber
2128+ * @param string $telephoneNumber
20982129 *
20992130 * @return self
21002131 */
0 commit comments