/* Options: Date: 2024-10-06 10:28:19 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: StaffStatusRequest.* //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="/StaffStatus", Verbs="POST") public static class StaffStatusRequest implements IReturn { public String staff_login = null; public String password = null; public String getStaffLogin() { return staff_login; } public StaffStatusRequest setStaffLogin(String value) { this.staff_login = value; return this; } public String getPassword() { return password; } public StaffStatusRequest setPassword(String value) { this.password = value; return this; } private static Object responseType = StudentStatusResponse.class; public Object getResponseType() { return responseType; } } public static class StudentStatusResponse { public Boolean is_active = null; public Boolean is_authenticated = null; public Boolean is_admitted = null; public Boolean getIsActive() { return is_active; } public StudentStatusResponse setIsActive(Boolean value) { this.is_active = value; return this; } public Boolean getIsAuthenticated() { return is_authenticated; } public StudentStatusResponse setIsAuthenticated(Boolean value) { this.is_authenticated = value; return this; } public Boolean getIsAdmitted() { return is_admitted; } public StudentStatusResponse setIsAdmitted(Boolean value) { this.is_admitted = value; return this; } } }