@@ -64,7 +64,8 @@ class ExtendedAttribute implements ArrayAccess
64
64
'numeric_value ' => 'float ' ,
65
65
'date_value ' => '\DateTime ' ,
66
66
'flag_value ' => 'bool ' ,
67
- 'text_value ' => 'string '
67
+ 'text_value ' => 'string ' ,
68
+ 'is_error_value ' => 'bool '
68
69
];
69
70
70
71
/*
@@ -81,7 +82,8 @@ class ExtendedAttribute implements ArrayAccess
81
82
'numeric_value ' => 'decimal ' ,
82
83
'date_value ' => 'date-time ' ,
83
84
'flag_value ' => null ,
84
- 'text_value ' => null
85
+ 'text_value ' => null ,
86
+ 'is_error_value ' => null
85
87
];
86
88
87
89
/*
@@ -119,7 +121,8 @@ public static function swaggerFormats()
119
121
'numeric_value ' => 'NumericValue ' ,
120
122
'date_value ' => 'DateValue ' ,
121
123
'flag_value ' => 'FlagValue ' ,
122
- 'text_value ' => 'TextValue '
124
+ 'text_value ' => 'TextValue ' ,
125
+ 'is_error_value ' => 'IsErrorValue '
123
126
];
124
127
125
128
/*
@@ -136,7 +139,8 @@ public static function swaggerFormats()
136
139
'numeric_value ' => 'setNumericValue ' ,
137
140
'date_value ' => 'setDateValue ' ,
138
141
'flag_value ' => 'setFlagValue ' ,
139
- 'text_value ' => 'setTextValue '
142
+ 'text_value ' => 'setTextValue ' ,
143
+ 'is_error_value ' => 'setIsErrorValue '
140
144
];
141
145
142
146
/*
@@ -153,7 +157,8 @@ public static function swaggerFormats()
153
157
'numeric_value ' => 'getNumericValue ' ,
154
158
'date_value ' => 'getDateValue ' ,
155
159
'flag_value ' => 'getFlagValue ' ,
156
- 'text_value ' => 'getTextValue '
160
+ 'text_value ' => 'getTextValue ' ,
161
+ 'is_error_value ' => 'getIsErrorValue '
157
162
];
158
163
159
164
/*
@@ -225,6 +230,7 @@ public function __construct(array $data = null)
225
230
$ this ->container ['date_value ' ] = isset ($ data ['date_value ' ]) ? $ data ['date_value ' ] : null ;
226
231
$ this ->container ['flag_value ' ] = isset ($ data ['flag_value ' ]) ? $ data ['flag_value ' ] : null ;
227
232
$ this ->container ['text_value ' ] = isset ($ data ['text_value ' ]) ? $ data ['text_value ' ] : null ;
233
+ $ this ->container ['is_error_value ' ] = isset ($ data ['is_error_value ' ]) ? $ data ['is_error_value ' ] : null ;
228
234
}
229
235
230
236
/*
@@ -491,6 +497,31 @@ public function setTextValue($text_value)
491
497
492
498
return $ this ;
493
499
}
500
+
501
+ /*
502
+ * Gets is_error_value
503
+ *
504
+ * @return bool
505
+ */
506
+ public function getIsErrorValue ()
507
+ {
508
+ return $ this ->container ['is_error_value ' ];
509
+ }
510
+
511
+ /*
512
+ * Sets text_value
513
+ *
514
+ * @param string $text_value Gets or sets whether calculation of extended attribute's value resulted in an error.
515
+ *
516
+ * @return $this
517
+ */
518
+ public function setIsErrorValue ($ is_error_value )
519
+ {
520
+ $ this ->container ['is_error_value ' ] = $ is_error_value ;
521
+
522
+ return $ this ;
523
+ }
524
+
494
525
/*
495
526
* Returns true if offset exists. False otherwise.
496
527
*
0 commit comments