/* Options: Date: 2026-09-01 21:27:41 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: CreateInvoiceItems.* //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", "POST") type CreateInvoiceItems struct { InvoiceId int64 `json:"invoiceId,omitempty"` TrackId int64 `json:"trackId,omitempty"` UnitPrice float64 `json:"unitPrice,omitempty"` Quantity int64 `json:"quantity,omitempty"` } func (CreateInvoiceItems) CreateResponse() (r ss.IdResponse) { return } func (CreateInvoiceItems) HttpMethod() string { return "POST" }