Skip to content

Commit 92a209a

Browse files
[TASKSCLOUD-607] - Deployed new 21.10 version.
1 parent a3f59af commit 92a209a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

api/models/configuration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func NewConfiguration(configFilePath string) (pConfig *Configuration, err error)
9191
cfg := Configuration{
9292
BaseUrl: "https://api.aspose.cloud",
9393
DebugMode: false,
94-
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.8"},
94+
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.10"},
9595
}
9696
err = json.Unmarshal(data, &cfg)
9797

api/models/extended_attribute.go

+2
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,6 @@ type ExtendedAttribute struct {
5151
FlagValue bool `json:"flagValue"`
5252
// Gets or sets a value for attributes with 'Text' type.
5353
TextValue string `json:"textValue,omitempty"`
54+
// Gets whether calculation of extended attribute's value resulted in an error.
55+
IsErrorValue bool `json:"isErrorValue"`
5456
}

docs/ExtendedAttribute.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**DateValue** | [**time.Time**](time.Time.md) | Gets or sets a value for attributes with date types (Date, Start, Finish). | [default to null]
1313
**FlagValue** | **bool** | Gets or sets a value indicating whether a flag is set for an attribute with 'Flag' type. | [default to null]
1414
**TextValue** | **string** | Gets or sets a value for attributes with 'Text' type. | [optional] [default to null]
15+
**IsErrorValue** | **bool** | Gets whether calculation of extended attribute's value resulted in an error. | [default to null]
1516

1617
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1718

0 commit comments

Comments
 (0)