We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79cfe99 commit 7ebbf97Copy full SHA for 7ebbf97
api/account/v3/account_sdk.go
@@ -55,6 +55,8 @@ const (
55
ContractTypeContainer = ContractType("container")
56
// A contract specific to Baremetal products.
57
ContractTypeBaremetal = ContractType("baremetal")
58
+ // A contract specific to Network products.
59
+ ContractTypeNetwork = ContractType("network")
60
)
61
62
func (enum ContractType) String() string {
@@ -73,6 +75,7 @@ func (enum ContractType) Values() []ContractType {
73
75
"instance",
74
76
"container",
77
"baremetal",
78
+ "network",
79
}
80
81
0 commit comments