/* Options: Date: 2025-09-22 22:10:54 Version: 6.21 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://accounts.dev.healthmonix.com/api/ //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateApplication.* //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="/applications/{id}", Verbs="PUT") public static class UpdateApplication implements IReturn { public String id = null; public String name = null; public String purchaseUrl = null; public String isActive = null; public String getId() { return id; } public UpdateApplication setId(String value) { this.id = value; return this; } public String getName() { return name; } public UpdateApplication setName(String value) { this.name = value; return this; } public String getPurchaseUrl() { return purchaseUrl; } public UpdateApplication setPurchaseUrl(String value) { this.purchaseUrl = value; return this; } public String getIsActive() { return isActive; } public UpdateApplication setIsActive(String value) { this.isActive = value; return this; } private static Object responseType = UpdateApplicationResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateApplicationResponse { public String message = null; public Application application = null; public HttpStatusCode status = null; public ResponseStatus responseStatus = null; public String getMessage() { return message; } public UpdateApplicationResponse setMessage(String value) { this.message = value; return this; } public Application getApplication() { return application; } public UpdateApplicationResponse setApplication(Application value) { this.application = value; return this; } public HttpStatusCode getStatus() { return status; } public UpdateApplicationResponse setStatus(HttpStatusCode value) { this.status = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public UpdateApplicationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Application { public String id = null; public String name = null; public String token = null; public String purchaseUrl = null; public Boolean isActive = null; public String getId() { return id; } public Application setId(String value) { this.id = value; return this; } public String getName() { return name; } public Application setName(String value) { this.name = value; return this; } public String getToken() { return token; } public Application setToken(String value) { this.token = value; return this; } public String getPurchaseUrl() { return purchaseUrl; } public Application setPurchaseUrl(String value) { this.purchaseUrl = value; return this; } public Boolean getIsActive() { return isActive; } public Application setIsActive(Boolean value) { this.isActive = value; return this; } } }