/* Options: Date: 2026-08-15 08:03:04 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: QueryInvoiceItems.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type InvoiceItems struct { InvoiceLineId int64 `json:"invoiceLineId,omitempty"` InvoiceId int64 `json:"invoiceId,omitempty"` TrackId int64 `json:"trackId,omitempty"` UnitPrice float64 `json:"unitPrice,omitempty"` Quantity int64 `json:"quantity,omitempty"` } // @Route("/invoiceitems", "GET") // @Route("/invoiceitems/{InvoiceLineId}", "GET") type QueryInvoiceItems struct { ss.QueryDb InvoiceLineId *int64 `json:"invoiceLineId,omitempty"` } func (QueryInvoiceItems) CreateResponse() (r ss.QueryResponse[InvoiceItems]) { return } func (QueryInvoiceItems) HttpMethod() string { return "GET" }