This commit is contained in:
dayterr
2026-04-10 16:47:00 +03:00
parent 0812c5a8af
commit cd67633a52
14 changed files with 418 additions and 62 deletions

View File

@@ -0,0 +1,18 @@
// API Actor API for managing SDN version
package version
import (
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v14/interfaces"
)
// Structure for creating request to version
type Version struct {
client interfaces.Caller
}
// Builder for version endpoints
func New(client interfaces.Caller) *Version {
return &Version{
client,
}
}