/* Options: Date: 2025-12-06 06:58:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProfileRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BackofficeApi { @Route(Path="/staff/get_profile", Verbs="GET") public static class GetProfileRequest implements IReturn, IGet { private static Object responseType = GetProfileResponse.class; public Object getResponseType() { return responseType; } } public static class GetProfileResponse { public BackofficeUserDto userDto = null; public BackofficeUserDto getUserDto() { return userDto; } public GetProfileResponse setUserDto(BackofficeUserDto value) { this.userDto = value; return this; } } public static enum Locale { EnUs, NbNo; } public static class BackofficeUserDto { public Long id = null; public String email = null; public String firstName = null; public String lastName = null; public String mobilePhone = null; public Locale locale = null; public Long getId() { return id; } public BackofficeUserDto setId(Long value) { this.id = value; return this; } public String getEmail() { return email; } public BackofficeUserDto setEmail(String value) { this.email = value; return this; } public String getFirstName() { return firstName; } public BackofficeUserDto setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public BackofficeUserDto setLastName(String value) { this.lastName = value; return this; } public String getMobilePhone() { return mobilePhone; } public BackofficeUserDto setMobilePhone(String value) { this.mobilePhone = value; return this; } public Locale getLocale() { return locale; } public BackofficeUserDto setLocale(Locale value) { this.locale = value; return this; } } }