We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents daa0cb1 + a776321 commit 3179653Copy full SHA for 3179653
api/schema/objects.go
@@ -125,6 +125,17 @@ type Organization struct {
125
Picture_data string `bson:"picture_data" json:"picture_data"`
126
}
127
128
+type DiscountProgram struct {
129
+ Id primitive.ObjectID `bson:"_id" json:"_id"`
130
+ Category string `bson:"category" json:"category"`
131
+ Business string `bson:"business" json:"business"`
132
+ Address string `bson:"address" json:"address"`
133
+ Phone string `bson:"phone" json:"phone"`
134
+ Email string `bson:"email" json:"email"`
135
+ Website string `bson:"website" json:"website"`
136
+ Discount string `bson:"discount" json:"discount"`
137
+}
138
+
139
type Event struct {
140
Id primitive.ObjectID `bson:"_id" json:"_id"`
141
Summary string `bson:"summary" json:"summary"`
0 commit comments