/* Options: Date: 2024-10-06 10:33:21 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EzProxyAuthRequest.* //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="/EzProxy/Auth", Verbs="POST") public static class EzProxyAuthRequest { public String regent_login = null; public String password = null; public String getRegentLogin() { return regent_login; } public EzProxyAuthRequest setRegentLogin(String value) { this.regent_login = value; return this; } public String getPassword() { return password; } public EzProxyAuthRequest setPassword(String value) { this.password = value; return this; } } }