/* Options: Date: 2025-09-03 20:23:54 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UnassignUserRolesRequest.* //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="/users/{Id}/roles/unassign", Verbs="DELETE") public static class UnassignUserRolesRequest extends DeleteOperationUnTenanted implements IReturn { public String id = null; public ArrayList roles = null; public String getId() { return id; } public UnassignUserRolesRequest setId(String value) { this.id = value; return this; } public ArrayList getRoles() { return roles; } public UnassignUserRolesRequest setRoles(ArrayList value) { this.roles = value; return this; } private static Object responseType = AssignUserRolesResponse.class; public Object getResponseType() { return responseType; } } public static class AssignUserRolesResponse { public ResponseStatus responseStatus = null; public UserAccount userAccount = null; public ResponseStatus getResponseStatus() { return responseStatus; } public AssignUserRolesResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public UserAccount getUserAccount() { return userAccount; } public AssignUserRolesResponse setUserAccount(UserAccount value) { this.userAccount = value; return this; } } public static class DeleteOperationUnTenanted implements IDelete { } public static class UserAccount implements IIdentifiableResource { public ArrayList roles = null; public AccountStatus status = null; public String defaultOrganisationId = null; public AccountType type = null; public String id = null; public ArrayList getRoles() { return roles; } public UserAccount setRoles(ArrayList value) { this.roles = value; return this; } public AccountStatus getStatus() { return status; } public UserAccount setStatus(AccountStatus value) { this.status = value; return this; } public String getDefaultOrganisationId() { return defaultOrganisationId; } public UserAccount setDefaultOrganisationId(String value) { this.defaultOrganisationId = value; return this; } public AccountType getType() { return type; } public UserAccount setType(AccountType value) { this.type = value; return this; } public String getId() { return id; } public UserAccount setId(String value) { this.id = value; return this; } } public static interface IIdentifiableResource { public String id = null; } public static enum AccountType { Person, Machine; } public static enum AccountStatus { Shadowed, Registered; } }