github.com/ravendb/ravendb-go-client@v0.0.0-20240229102137-4474ee7aa0fa/tests/order_line_test.go (about)

     1  package tests
     2  
     3  type OrderLine struct {
     4  	Product      string  `json:"product"`
     5  	ProductName  string  `json:"productName"`
     6  	PricePerUnit float64 `json:"pricePerUnit"`
     7  	Quantity     int     `json:"quantity"`
     8  	Discount     float64 `json:"discount"`
     9  }