Skip to content

Commit bbd8331

Browse files
committed
fix(store-types): Remove omitempty from required fields.
1 parent ceff1f4 commit bbd8331

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

v2/api/store_type_models.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ type CertificateStoreTypeGeneric struct {
2020
}
2121

2222
type CertificateStoreType struct {
23-
Name string `json:"Name,omitempty"`
24-
ShortName string `json:"ShortName,omitempty"`
23+
Name string `json:"Name"`
24+
ShortName string `json:"ShortName"`
2525
Capability string `json:"Capability,omitempty"`
26-
StoreType int `json:"StoreType,omitempty"`
26+
StoreType int `json:"StoreType"`
2727
ImportType int `json:"ImportType,omitempty"`
2828
LocalStore bool `json:"LocalStore,omitempty"`
2929
SupportedOperations *StoreTypeSupportedOperations `json:"SupportedOperations,omitempty"`

0 commit comments

Comments
 (0)