From 9ab374b720103a9ed7ced2ef0157e7347fdf670a Mon Sep 17 00:00:00 2001 From: mr Date: Wed, 3 Jun 2026 08:03:11 +0200 Subject: [PATCH] oc nano --- models/booking/booking.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/booking/booking.go b/models/booking/booking.go index c8d524d..711e5ba 100644 --- a/models/booking/booking.go +++ b/models/booking/booking.go @@ -17,7 +17,7 @@ import ( type Booking struct { utils.AbstractObject // AbstractObject contains the basic fields of an object (id, name) - FromNano string `json:"from_nano,omitempty" bson:"priced_item,omitempty"` + FromNano string `json:"from_nano,omitempty" bson:"from_nano,omitempty"` PricedItem map[string]interface{} `json:"priced_item,omitempty" bson:"priced_item,omitempty"` // We need to add the validate:"required" tag once the pricing feature is implemented, removed to avoid handling the error ResumeMetrics map[string]map[string]models.MetricResume `json:"resume_metrics,omitempty" bson:"resume_metrics,omitempty"`