/// Options: /// Date: 2026-09-01 21:48:34 /// 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: HelloAllTypes.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); pub const SubType = struct { id: i32 = 0, name: ?[]const u8 = null, }; pub const AllTypes = struct { id: i32 = 0, nullableId: ?i32 = null, byte: u8 = 0, short: i16 = 0, int: i32 = 0, long: i64 = 0, uShort: u16 = 0, uInt: u32 = 0, uLong: u64 = 0, float: f32 = 0, double: f64 = 0, decimal: f64 = 0, string: ?[]const u8 = null, dateTime: ?[]const u8 = null, timeSpan: ?[]const u8 = null, dateTimeOffset: ?[]const u8 = null, guid: ?[]const u8 = null, char: u8 = 0, keyValuePair: ?KeyValuePair = null, nullableDateTime: ?[]const u8 = null, nullableTimeSpan: ?[]const u8 = null, stringList: [][]const u8 = &.{}, stringArray: [][]const u8 = &.{}, stringMap: ?std.json.Value = null, intStringMap: ?std.json.Value = null, subType: ?SubType = null, point: ?[]const u8 = null, // @DataMember(Name="aliasedName") aliasedName: ?[]const u8 = null, }; pub const Poco = struct { name: ?[]const u8 = null, }; pub const AllCollectionTypes = struct { intArray: []i32 = &.{}, intList: []i32 = &.{}, stringArray: [][]const u8 = &.{}, stringList: [][]const u8 = &.{}, pocoArray: []Poco = &.{}, pocoList: []Poco = &.{}, nullableByteArray: []?u8 = &.{}, nullableByteList: []?u8 = &.{}, nullableDateTimeArray: []?[]const u8 = &.{}, nullableDateTimeList: []?[]const u8 = &.{}, pocoLookup: ?std.json.Value = null, pocoLookupMap: ?std.json.Value = null, }; pub fn KeyValuePair(comptime TKey: type, comptime TValue: type) type { return struct { key: ?TKey = null, value: ?TValue = null, }; } pub const HelloAllTypesResponse = struct { result: ?[]const u8 = null, allTypes: ?AllTypes = null, allCollectionTypes: ?AllCollectionTypes = null, }; pub const HelloAllTypes = struct { pub const ss_name = "HelloAllTypes"; pub const ss_verb = "POST"; pub const Response = HelloAllTypesResponse; name: ?[]const u8 = null, allTypes: ?AllTypes = null, allCollectionTypes: ?AllCollectionTypes = null, };