Skip to content

Commit 7ebbf97

Browse files
authored
feat(account): add network contract type (#2739)
1 parent 79cfe99 commit 7ebbf97

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

api/account/v3/account_sdk.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ const (
5555
ContractTypeContainer = ContractType("container")
5656
// A contract specific to Baremetal products.
5757
ContractTypeBaremetal = ContractType("baremetal")
58+
// A contract specific to Network products.
59+
ContractTypeNetwork = ContractType("network")
5860
)
5961

6062
func (enum ContractType) String() string {
@@ -73,6 +75,7 @@ func (enum ContractType) Values() []ContractType {
7375
"instance",
7476
"container",
7577
"baremetal",
78+
"network",
7679
}
7780
}
7881

0 commit comments

Comments
 (0)