/// Options: /// Date: 2026-09-01 21:27:38 /// 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: CreateInvoices.* /// 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", "POST") pub const CreateInvoices = struct { pub const ss_name = "CreateInvoices"; pub const ss_verb = "POST"; pub const Response = ss.IdResponse; 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, };