/// Options: /// Date: 2026-08-15 04:56:06 /// 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: PatchInvoices.* /// 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}", "PATCH") pub const PatchInvoices = struct { pub const ss_name = "PatchInvoices"; pub const ss_verb = "PATCH"; 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, };