/// Options: /// Date: 2026-09-01 21:49:05 /// 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: UpdateInvoices.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Invoices = struct { invoiceId: i64 = 0, customerId: i64 = 0, invoiceDate: ?[]const u8 = null, billingAddress: ?[]const u8 = null, billingCity: ?[]const u8 = null, billingState: ?[]const u8 = null, billingCountry: ?[]const u8 = null, billingPostalCode: ?[]const u8 = null, total: f64 = 0, }; // @Route("/invoices/{InvoiceId}", "PUT") pub const UpdateInvoices = struct { pub const ss_name = "UpdateInvoices"; pub const ss_verb = "PUT"; pub const Response = ss.IdResponse; invoiceId: i64 = 0, customerId: i64 = 0, invoiceDate: ?[]const u8 = null, billingAddress: ?[]const u8 = null, billingCity: ?[]const u8 = null, billingState: ?[]const u8 = null, billingCountry: ?[]const u8 = null, billingPostalCode: ?[]const u8 = null, total: f64 = 0, };