/* Options: Date: 2025-05-06 13:38:07 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateMainOwner.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/CRUD/MainOwner/Create", Verbs="POST") public static class CreateMainOwner implements IReturn { public String idPath = null; public String name = null; public String description = null; public String genrePath = null; public String locationPath = null; public String getIdPath() { return idPath; } public CreateMainOwner setIdPath(String value) { this.idPath = value; return this; } public String getName() { return name; } public CreateMainOwner setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public CreateMainOwner setDescription(String value) { this.description = value; return this; } public String getGenrePath() { return genrePath; } public CreateMainOwner setGenrePath(String value) { this.genrePath = value; return this; } public String getLocationPath() { return locationPath; } public CreateMainOwner setLocationPath(String value) { this.locationPath = value; return this; } private static Object responseType = CreateMainOwnerResponse.class; public Object getResponseType() { return responseType; } } public static class CreateMainOwnerResponse { public Integer id = null; public ResponseStatus responseStatus = null; public Integer getId() { return id; } public CreateMainOwnerResponse setId(Integer value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public CreateMainOwnerResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }