We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b9fb94 commit 26e3cf9Copy full SHA for 26e3cf9
models.go
@@ -981,6 +981,15 @@ type Variable struct {
981
ValueInfo interface{} `json:"valueInfo,omitempty"`
982
}
983
984
+// For serialized variables of type Object, the following properties can be provided:
985
+type ObjectValueInfo struct {
986
+ // A string representation of the object's type name.
987
+ ObjectTypeName string `json:"objectTypeName,omitempty"`
988
+
989
+ // The serialization format used to store the variable.
990
+ SerializationDataFormat string `json:"serializationDataFormat,omitempty"`
991
+}
992
993
func (e *Error) Error() string {
994
return fmt.Sprintf("type %s, message: %s", e.Type, e.Message)
995
0 commit comments