/* Options: Date: 2025-09-22 22:11:05 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: GetApplication.* //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="GET") public static class GetApplication implements IReturn { public String id = null; public String getId() { return id; } public GetApplication setId(String value) { this.id = value; return this; } private static Object responseType = ApplicationDto.class; public Object getResponseType() { return responseType; } } public static class ApplicationDto { 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 ApplicationDto setId(String value) { this.id = value; return this; } public String getName() { return name; } public ApplicationDto setName(String value) { this.name = value; return this; } public String getToken() { return token; } public ApplicationDto setToken(String value) { this.token = value; return this; } public String getPurchaseUrl() { return purchaseUrl; } public ApplicationDto setPurchaseUrl(String value) { this.purchaseUrl = value; return this; } public Boolean getIsActive() { return isActive; } public ApplicationDto setIsActive(Boolean value) { this.isActive = value; return this; } } }