/// 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: DeletePlayer.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); pub const Player = struct { id: i32 = 0, // @Required() firstName: ?[]const u8 = null, lastName: ?[]const u8 = null, email: ?[]const u8 = null, phoneNumbers: []Phone = &.{}, gameItems: []PlayerGameItem = &.{}, profile: ?Profile = null, profileId: i32 = 0, savedLevelId: ?[]const u8 = null, rowVersion: u64 = 0, }; pub const DeletePlayer = struct { pub const ss_name = "DeletePlayer"; pub const ss_verb = "DELETE"; id: i32 = 0, };