/* Options: Date: 2026-05-19 09:53:04 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMyUser.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/me", Verbs="GET") open class GetMyUser : IReturn { companion object { private val responseType = GetUserResponse::class.java } override fun getResponseType(): Any? = GetMyUser.responseType } open class GetUserResponse { /** * Unique Identifier of a User */ @ApiMember(Description="Unique Identifier of a User", IsRequired=true) var userId:UUID? = null /** * User's Email address */ @ApiMember(Description="User's Email address", IsRequired=true) var emailAddress:String? = null /** * First Name */ @ApiMember(Description="First Name", IsRequired=true) var firstName:String? = null /** * Last Name */ @ApiMember(Description="Last Name", IsRequired=true) var lastName:String? = null /** * User's Password Expiration Date */ @ApiMember(Description="User's Password Expiration Date") var passwordExpirationDate:String? = null /** * If the User must change the password */ @ApiMember(Description="If the User must change the password", IsRequired=true) var passwordMustBeChanged:Boolean? = null /** * User Type of the User */ @ApiMember(Description="User Type of the User", IsRequired=true) var userType:String? = null /** * Culture ID of the User */ @ApiMember(Description="Culture ID of the User", IsRequired=true) var culture:String? = null /** * If the User account is locked */ @ApiMember(Description="If the User account is locked", IsRequired=true) var accountLocked:Boolean? = null }