Tobias von Dewitz пре 3 година
родитељ
комит
5c72a066ee
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      request_data.go

+ 1 - 1
request_data.go

@@ -40,7 +40,7 @@ type RequestData struct {
 	Customer       string                 `bson:"customer" json:"customer,omitempty" form:"customer,omitempty" url:"customer,omitempty"`
 	DataRaw        map[string]interface{} `bson:"data_raw" json:"data_raw,omitempty" form:"data_raw,omitempty" url:"data_raw,omitempty"`
 	Weight         uint64                 `bson:"weight" json:"weight,omitempty" form:"weight,omitempty" url:"weight,omitempty"`
-	IsApp          bool                   `bson:"app" json:"app,omitempty" form:"app:omitempty" url:"app,omitempty"`
+	Type           string                 `bson:"type" json:"type,omitempty" form:"type:omitempty" url:"type,omitempty"`
 	Grs            grs.GRS                `bson:"grs" json:"grs,omitempty" form:"grs,omitempty" url:"grs,omitempty"`
 }