Skip to content

Commit

Permalink
fix(store-types): Remove omitempty from required fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
spbsoluble committed Feb 8, 2024
1 parent ceff1f4 commit bbd8331
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions v2/api/store_type_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ type CertificateStoreTypeGeneric struct {
}

type CertificateStoreType struct {
Name string `json:"Name,omitempty"`
ShortName string `json:"ShortName,omitempty"`
Name string `json:"Name"`
ShortName string `json:"ShortName"`
Capability string `json:"Capability,omitempty"`
StoreType int `json:"StoreType,omitempty"`
StoreType int `json:"StoreType"`
ImportType int `json:"ImportType,omitempty"`
LocalStore bool `json:"LocalStore,omitempty"`
SupportedOperations *StoreTypeSupportedOperations `json:"SupportedOperations,omitempty"`
Expand Down

0 comments on commit bbd8331

Please sign in to comment.