/// Options: /// Date: 2026-09-01 21:49:00 /// 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: DeleteInvoices.* /// 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}", "DELETE") pub const DeleteInvoices = struct { pub const ss_name = "DeleteInvoices"; pub const ss_verb = "DELETE"; pub const Response = ss.IdResponse; invoiceId: i64 = 0, };