You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this is how variables in VariableGroup are parsed
typeVariableGroupstruct {
.....
// Gets or sets variables contained in the variable group.Variables**map[string]interface{} `json:"variables,omitempty"`
}
In order to get the value of a specific variable, we need to some type assertion:
typeVariableGroupstruct {
.....
// Gets or sets variables contained in the variable group.Variables*map[string]map[string]interface{} `json:"variables,omitempty"`
}
Currently this is how variables in VariableGroup are parsed
In order to get the value of a specific variable, we need to some type assertion:
Could we not do this instead?
Therefore we could get the value, this way:
The text was updated successfully, but these errors were encountered: