Update February 13, 2024 (#70)

This commit is contained in:
Kirill
2024-02-17 03:24:14 +03:00
committed by GitHub
parent 7d8f43540f
commit 8e73d136f2
2 changed files with 7 additions and 0 deletions

View File

@@ -81,6 +81,12 @@ type GetCategoryAttributesResponse struct {
}
type GetCategoryAttributesResult struct {
// Indication that the dictionary attribute values depend on the category:
//
// true — the attribute has its own set of values for each category.
// false — the attribute has the same set of values for all categories
CategoryDependent bool `json:"category_dependent"`
// Characteristic description
Description string `json:"description"`

View File

@@ -88,6 +88,7 @@ func TestGetCategoryAttributes(t *testing.T) {
`{
"result": [
{
"category_dependent": true,
"description": "string",
"dictionary_id": 0,
"group_id": 0,