@@ -26,6 +26,7 @@ class RecurringResponseRecurringData implements ModelInterface, ArrayAccess
2626 * @var string[]
2727 */
2828 protected static $ swaggerTypes = [
29+ 'action_code ' => 'string ' ,
2930 'amount ' => 'float ' ,
3031 'arn ' => 'string ' ,
3132 'auth_code ' => 'string ' ,
@@ -56,6 +57,7 @@ class RecurringResponseRecurringData implements ModelInterface, ArrayAccess
5657 * @var string[]
5758 */
5859 protected static $ swaggerFormats = [
60+ 'action_code ' => null ,
5961 'amount ' => null ,
6062 'arn ' => null ,
6163 'auth_code ' => null ,
@@ -107,6 +109,7 @@ public static function swaggerFormats()
107109 * @var string[]
108110 */
109111 protected static $ attributeMap = [
112+ 'action_code ' => 'action_code ' ,
110113 'amount ' => 'amount ' ,
111114 'arn ' => 'arn ' ,
112115 'auth_code ' => 'auth_code ' ,
@@ -137,6 +140,7 @@ public static function swaggerFormats()
137140 * @var string[]
138141 */
139142 protected static $ setters = [
143+ 'action_code ' => 'setActionCode ' ,
140144 'amount ' => 'setAmount ' ,
141145 'arn ' => 'setArn ' ,
142146 'auth_code ' => 'setAuthCode ' ,
@@ -167,6 +171,7 @@ public static function swaggerFormats()
167171 * @var string[]
168172 */
169173 protected static $ getters = [
174+ 'action_code ' => 'getActionCode ' ,
170175 'amount ' => 'getAmount ' ,
171176 'arn ' => 'getArn ' ,
172177 'auth_code ' => 'getAuthCode ' ,
@@ -337,6 +342,7 @@ public function getTransTypeAllowableValues()
337342 */
338343 public function __construct (array $ data = null )
339344 {
345+ $ this ->container ['action_code ' ] = isset ($ data ['action_code ' ]) ? $ data ['action_code ' ] : null ;
340346 $ this ->container ['amount ' ] = isset ($ data ['amount ' ]) ? $ data ['amount ' ] : null ;
341347 $ this ->container ['arn ' ] = isset ($ data ['arn ' ]) ? $ data ['arn ' ] : null ;
342348 $ this ->container ['auth_code ' ] = isset ($ data ['auth_code ' ]) ? $ data ['auth_code ' ] : null ;
@@ -417,6 +423,30 @@ public function valid()
417423 }
418424
419425
426+ /**
427+ * Gets action_code
428+ *
429+ * @return string
430+ */
431+ public function getActionCode ()
432+ {
433+ return $ this ->container ['action_code ' ];
434+ }
435+
436+ /**
437+ * Sets action_code
438+ *
439+ * @param string $action_code Action code (only in decline case)
440+ *
441+ * @return $this
442+ */
443+ public function setActionCode ($ action_code )
444+ {
445+ $ this ->container ['action_code ' ] = $ action_code ;
446+
447+ return $ this ;
448+ }
449+
420450 /**
421451 * Gets amount
422452 *
0 commit comments