v0.0.607
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m17s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m17s
This commit is contained in:
@@ -34,7 +34,7 @@ type EnumDescriptionMetaValue struct {
|
||||
Description string `json:"description"`
|
||||
}
|
||||
|
||||
type EnumMetaDataValue struct {
|
||||
type EnumDataMetaValue struct {
|
||||
VarName string `json:"varName"`
|
||||
Value Enum `json:"value"`
|
||||
Description *string `json:"description"`
|
||||
@@ -42,7 +42,7 @@ type EnumMetaDataValue struct {
|
||||
Data map[string]any `json:"-"` //handled by MarshalJSON
|
||||
}
|
||||
|
||||
func (v EnumMetaDataValue) MarshalJSON() ([]byte, error) {
|
||||
func (v EnumDataMetaValue) MarshalJSON() ([]byte, error) {
|
||||
m := make(map[string]any, 8)
|
||||
|
||||
for k, dv := range v.Data {
|
||||
|
Reference in New Issue
Block a user