This commit is contained in:
aditya.siregar
2025-06-29 13:07:12 +07:00
parent 46b30277ef
commit 1bceae010b
4 changed files with 34 additions and 24 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ func (o *InquiryRequest) GetPaymentProvider() string {
type OrderItemRequest struct {
ProductID int64 `json:"product_id" validate:"required"`
Quantity int `json:"quantity" validate:"required,min=1"`
Quantity int `json:"quantity"`
Notes string `json:"notes"`
}