/* Options: Date: 2024-10-06 10:32:52 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: UserRolesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/UserRoles", Verbs="POST") public static class UserRolesRequest implements IReturn> { public String authorizing_uuid = null; public String getAuthorizingUuid() { return authorizing_uuid; } public UserRolesRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class UserRoleResponse { public ResponseStatus responseStatus = null; public Integer regent_id = null; public String uuid = null; public String regent_login = null; public String first_name = null; public String last_name = null; public String email = null; public Boolean is_staff = null; public ArrayList roles = null; public ResponseStatus getResponseStatus() { return responseStatus; } public UserRoleResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public Integer getRegentId() { return regent_id; } public UserRoleResponse setRegentId(Integer value) { this.regent_id = value; return this; } public String getUuid() { return uuid; } public UserRoleResponse setUuid(String value) { this.uuid = value; return this; } public String getRegentLogin() { return regent_login; } public UserRoleResponse setRegentLogin(String value) { this.regent_login = value; return this; } public String getFirstName() { return first_name; } public UserRoleResponse setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public UserRoleResponse setLastName(String value) { this.last_name = value; return this; } public String getEmail() { return email; } public UserRoleResponse setEmail(String value) { this.email = value; return this; } public Boolean getIsStaff() { return is_staff; } public UserRoleResponse setIsStaff(Boolean value) { this.is_staff = value; return this; } public ArrayList getRoles() { return roles; } public UserRoleResponse setRoles(ArrayList value) { this.roles = value; return this; } } }