/* Options: Date: 2026-05-19 04:33:01 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LoginAddUserRequest.* //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="/login/create", Verbs="POST") public static class LoginAddUserRequest implements IReturn { public String userName = null; public String firstName = null; public String lastName = null; public String displayName = null; public String email = null; public ArrayList roles = null; public ArrayList permissions = null; public String password = null; public Long requestUnixUTCTimeStamp = null; public RequestSignature signature = null; public String getUserName() { return userName; } public LoginAddUserRequest setUserName(String value) { this.userName = value; return this; } public String getFirstName() { return firstName; } public LoginAddUserRequest setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public LoginAddUserRequest setLastName(String value) { this.lastName = value; return this; } public String getDisplayName() { return displayName; } public LoginAddUserRequest setDisplayName(String value) { this.displayName = value; return this; } public String getEmail() { return email; } public LoginAddUserRequest setEmail(String value) { this.email = value; return this; } public ArrayList getRoles() { return roles; } public LoginAddUserRequest setRoles(ArrayList value) { this.roles = value; return this; } public ArrayList getPermissions() { return permissions; } public LoginAddUserRequest setPermissions(ArrayList value) { this.permissions = value; return this; } public String getPassword() { return password; } public LoginAddUserRequest setPassword(String value) { this.password = value; return this; } public Long getRequestUnixUTCTimeStamp() { return requestUnixUTCTimeStamp; } public LoginAddUserRequest setRequestUnixUTCTimeStamp(Long value) { this.requestUnixUTCTimeStamp = value; return this; } public RequestSignature getSignature() { return signature; } public LoginAddUserRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = LoginAddUserResult.class; public Object getResponseType() { return responseType; } } public static class LoginAddUserResult { public Boolean userCreated = null; public String userId = null; public String errorMessage = null; public Boolean isUserCreated() { return userCreated; } public LoginAddUserResult setUserCreated(Boolean value) { this.userCreated = value; return this; } public String getUserId() { return userId; } public LoginAddUserResult setUserId(String value) { this.userId = value; return this; } public String getErrorMessage() { return errorMessage; } public LoginAddUserResult setErrorMessage(String value) { this.errorMessage = value; return this; } } public static class RequestSignature { public String systemId = null; public String systemSecret = null; public String signature = null; public String getSystemId() { return systemId; } public RequestSignature setSystemId(String value) { this.systemId = value; return this; } public String getSystemSecret() { return systemSecret; } public RequestSignature setSystemSecret(String value) { this.systemSecret = value; return this; } public String getSignature() { return signature; } public RequestSignature setSignature(String value) { this.signature = value; return this; } } }