/// Options: /// Date: 2026-09-01 21:28:32 /// 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: CreateChinookCustomer.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Customers = struct { customerId: i64 = 0, // @Required() firstName: ?[]const u8 = null, // @Required() lastName: ?[]const u8 = null, company: ?[]const u8 = null, address: ?[]const u8 = null, city: ?[]const u8 = null, state: ?[]const u8 = null, country: ?[]const u8 = null, postalCode: ?[]const u8 = null, phone: ?[]const u8 = null, fax: ?[]const u8 = null, // @Required() email: ?[]const u8 = null, supportRepId: ?i64 = null, }; // @Route("/customers", "POST") pub const CreateChinookCustomer = struct { pub const ss_name = "CreateChinookCustomer"; pub const ss_verb = "POST"; pub const Response = ss.IdResponse; firstName: ?[]const u8 = null, lastName: ?[]const u8 = null, company: ?[]const u8 = null, address: ?[]const u8 = null, city: ?[]const u8 = null, state: ?[]const u8 = null, country: ?[]const u8 = null, postalCode: ?[]const u8 = null, phone: ?[]const u8 = null, fax: ?[]const u8 = null, email: ?[]const u8 = null, supportRepId: ?i64 = null, };