/* Options: Date: 2025-10-28 01:24:43 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetTestUsers.* //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="/test/users") // @Route(Path="/test/users/{role}") public static class GetTestUsers implements IReturn { public String Role = null; public String getRole() { return Role; } public GetTestUsers setRole(String value) { this.Role = value; return this; } private static Object responseType = TestUsersResponse.class; public Object getResponseType() { return responseType; } } public static class TestUsersResponse { public String Email = null; public ArrayList Roles = null; public String getEmail() { return Email; } public TestUsersResponse setEmail(String value) { this.Email = value; return this; } public ArrayList getRoles() { return Roles; } public TestUsersResponse setRoles(ArrayList value) { this.Roles = value; return this; } } }