/* Options: Date: 2024-12-29 03:30:28 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: UserRoleRequest.* //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="/UserRoles/{uuid}", Verbs="POST") public static class UserRoleRequest implements IReturn { public String authorizing_uuid = null; public String uuid = null; public String getAuthorizingUuid() { return authorizing_uuid; } public UserRoleRequest setAuthorizingUuid(String value) { this.authorizing_uuid = value; return this; } public String getUuid() { return uuid; } public UserRoleRequest setUuid(String value) { this.uuid = value; return this; } private static Object responseType = UserRoleResponse.class; 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; } } }