/* Options: Date: 2024-12-22 21:08:53 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateGenres.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/genres/{GenreId}", Verbs="PUT") public static class UpdateGenres implements IReturn, IPut, IUpdateDb { public Long genreId = null; public String name = null; public Long getGenreId() { return genreId; } public UpdateGenres setGenreId(Long value) { this.genreId = value; return this; } public String getName() { return name; } public UpdateGenres setName(String value) { this.name = value; return this; } private static Object responseType = IdResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class IdResponse { @DataMember(Order=1) public String id = null; @DataMember(Order=2) public ResponseStatus responseStatus = null; public String getId() { return id; } public IdResponse setId(String value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public IdResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Genres { public Long genreId = null; public String name = null; public Long getGenreId() { return genreId; } public Genres setGenreId(Long value) { this.genreId = value; return this; } public String getName() { return name; } public Genres setName(String value) { this.name = value; return this; } } }