/// Options: /// Date: 2026-08-12 17:45:26 /// 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: UpdatePlaylists.* /// ExcludeTypes: /// DefaultImports: const std = @import("std"); /// const std = @import("std"); const ss = @import("servicestack"); pub const Playlists = struct { playlistId: i64 = 0, name: ?[]const u8 = null, }; // @Route("/playlists/{PlaylistId}", "PUT") pub const UpdatePlaylists = struct { pub const ss_name = "UpdatePlaylists"; pub const ss_verb = "PUT"; pub const Response = ss.IdResponse; playlistId: i64 = 0, name: ?[]const u8 = null, };