This commit is contained in:
2026-08-21 18:12:55 +04:00
parent f34fa6055c
commit c296c62a0c
1285 changed files with 3959 additions and 3249 deletions

View File

@@ -5,7 +5,7 @@ import (
"encoding/json"
"net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v16/internal/validators"
)
// ListGetRequest struct to get list of locations

View File

@@ -5,7 +5,7 @@ import (
"encoding/json"
"net/http"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/validators"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v16/internal/validators"
)
// ListRequest struct to get list of locations

View File

@@ -2,7 +2,7 @@
package locations
import (
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/interfaces"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v16/interfaces"
)
// Structure for creating request to locations

View File

@@ -5,6 +5,9 @@ type ItemLocation struct {
// AuthBroker
AuthBroker []string `json:"authBroker"`
// Budget
Budget bool `json:"budget"`
// Grid ID
GID uint64 `json:"gid"`

View File

@@ -3,7 +3,7 @@ package locations
import (
"encoding/json"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v15/internal/serialization"
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v16/internal/serialization"
)
// Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions.