/// Options: /// Date: 2026-09-01 21:28:43 /// 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: CreateChinookEmployee.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Employees = struct { employeeId: i64 = 0, // @Required() lastName: ?[]const u8 = null, // @Required() firstName: ?[]const u8 = null, title: ?[]const u8 = null, reportsTo: ?i64 = null, birthDate: ?[]const u8 = null, hireDate: ?[]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, }; // @Route("/employees", "POST") pub const CreateChinookEmployee = struct { pub const ss_name = "CreateChinookEmployee"; pub const ss_verb = "POST"; pub const Response = ss.IdResponse; lastName: ?[]const u8 = null, firstName: ?[]const u8 = null, title: ?[]const u8 = null, reportsTo: ?i64 = null, birthDate: ?[]const u8 = null, hireDate: ?[]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, };