/* Options: Date: 2026-05-19 10:45:15 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateUser.* //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", Verbs="POST") public static class CreateUser implements IReturn { /** * User E-mail */ @ApiMember(Description="User E-mail", IsRequired=true) public String email = null; /** * User First Name */ @ApiMember(Description="User First Name", IsRequired=true) public String firstName = null; /** * User Last Name */ @ApiMember(Description="User Last Name", IsRequired=true) public String lastName = null; /** * User Culture */ @ApiMember(Description="User Culture", IsRequired=true) public String culture = null; /** * Country Id */ @ApiMember(Description="Country Id", IsRequired=true) public String countryId = null; public String getEmail() { return email; } public CreateUser setEmail(String value) { this.email = value; return this; } public String getFirstName() { return firstName; } public CreateUser setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public CreateUser setLastName(String value) { this.lastName = value; return this; } public String getCulture() { return culture; } public CreateUser setCulture(String value) { this.culture = value; return this; } public String getCountryId() { return countryId; } public CreateUser setCountryId(String value) { this.countryId = value; return this; } private static Object responseType = CreateUserResponse.class; public Object getResponseType() { return responseType; } } public static class CreateUserResponse { /** * Unique Identifier of the User created in Booster */ @ApiMember(Description="Unique Identifier of the User created in Booster", IsRequired=true) public UUID userId = null; public UUID getUserId() { return userId; } public CreateUserResponse setUserId(UUID value) { this.userId = value; return this; } } }