Skip to content

Commit

Permalink
[TASKSCLOUD-607] - Deployed new 21.10 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanAndreychikov committed Oct 28, 2021
1 parent a3f59af commit 92a209a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion api/models/configuration.go
Expand Up @@ -91,7 +91,7 @@ func NewConfiguration(configFilePath string) (pConfig *Configuration, err error)
cfg := Configuration{
BaseUrl: "https://api.aspose.cloud",
DebugMode: false,
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.8"},
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.10"},
}
err = json.Unmarshal(data, &cfg)

Expand Down
2 changes: 2 additions & 0 deletions api/models/extended_attribute.go
Expand Up @@ -51,4 +51,6 @@ type ExtendedAttribute struct {
FlagValue bool `json:"flagValue"`
// Gets or sets a value for attributes with 'Text' type.
TextValue string `json:"textValue,omitempty"`
// Gets whether calculation of extended attribute's value resulted in an error.
IsErrorValue bool `json:"isErrorValue"`
}
1 change: 1 addition & 0 deletions docs/ExtendedAttribute.md
Expand Up @@ -12,6 +12,7 @@ Name | Type | Description | Notes
**DateValue** | [**time.Time**](time.Time.md) | Gets or sets a value for attributes with date types (Date, Start, Finish). | [default to null]
**FlagValue** | **bool** | Gets or sets a value indicating whether a flag is set for an attribute with 'Flag' type. | [default to null]
**TextValue** | **string** | Gets or sets a value for attributes with 'Text' type. | [optional] [default to null]
**IsErrorValue** | **bool** | Gets whether calculation of extended attribute's value resulted in an error. | [default to null]

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

Expand Down

0 comments on commit 92a209a

Please sign in to comment.