Skip to content

Commit ff9d9ef

Browse files
[TASKSCLOUD-610] - Deployed new 21.10 version.
1 parent b58e419 commit ff9d9ef

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

src/Aspose/Tasks/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class Configuration
143143
* Version of Aspose.Tasks Cloud API
144144
*
145145
*/
146-
protected $clientVersion = '21.8';
146+
protected $clientVersion = '21.10';
147147

148148
/*
149149
* Constructor

src/Aspose/Tasks/Model/ExtendedAttribute.php

Lines changed: 36 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ class ExtendedAttribute implements ArrayAccess
6464
'numeric_value' => 'float',
6565
'date_value' => '\DateTime',
6666
'flag_value' => 'bool',
67-
'text_value' => 'string'
67+
'text_value' => 'string',
68+
'is_error_value' => 'bool'
6869
];
6970

7071
/*
@@ -81,7 +82,8 @@ class ExtendedAttribute implements ArrayAccess
8182
'numeric_value' => 'decimal',
8283
'date_value' => 'date-time',
8384
'flag_value' => null,
84-
'text_value' => null
85+
'text_value' => null,
86+
'is_error_value' => null
8587
];
8688

8789
/*
@@ -119,7 +121,8 @@ public static function swaggerFormats()
119121
'numeric_value' => 'NumericValue',
120122
'date_value' => 'DateValue',
121123
'flag_value' => 'FlagValue',
122-
'text_value' => 'TextValue'
124+
'text_value' => 'TextValue',
125+
'is_error_value' => 'IsErrorValue'
123126
];
124127

125128
/*
@@ -136,7 +139,8 @@ public static function swaggerFormats()
136139
'numeric_value' => 'setNumericValue',
137140
'date_value' => 'setDateValue',
138141
'flag_value' => 'setFlagValue',
139-
'text_value' => 'setTextValue'
142+
'text_value' => 'setTextValue',
143+
'is_error_value' => 'setIsErrorValue'
140144
];
141145

142146
/*
@@ -153,7 +157,8 @@ public static function swaggerFormats()
153157
'numeric_value' => 'getNumericValue',
154158
'date_value' => 'getDateValue',
155159
'flag_value' => 'getFlagValue',
156-
'text_value' => 'getTextValue'
160+
'text_value' => 'getTextValue',
161+
'is_error_value' => 'getIsErrorValue'
157162
];
158163

159164
/*
@@ -225,6 +230,7 @@ public function __construct(array $data = null)
225230
$this->container['date_value'] = isset($data['date_value']) ? $data['date_value'] : null;
226231
$this->container['flag_value'] = isset($data['flag_value']) ? $data['flag_value'] : null;
227232
$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;
228234
}
229235

230236
/*
@@ -491,6 +497,31 @@ public function setTextValue($text_value)
491497

492498
return $this;
493499
}
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+
494525
/*
495526
* Returns true if offset exists. False otherwise.
496527
*

0 commit comments

Comments
 (0)