Browse Source

added an IsApp flag to RequestData

Tobias von Dewitz 3 years ago
parent
commit
a724f25821
1 changed files with 1 additions and 0 deletions
  1. 1 0
      request_data.go

+ 1 - 0
request_data.go

@@ -40,6 +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"`
 	Grs            grs.GRS                `bson:"grs" json:"grs,omitempty" form:"grs,omitempty" url:"grs,omitempty"`
 }