(* Options: Date: 2026-05-19 09:51:25 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetUser.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Security.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetUserResponse() = /// ///Unique Identifier of a User /// [] member val userId:Guid = new Guid() with get,set /// ///User's Email address /// [] member val emailAddress:String = null with get,set /// ///First Name /// [] member val firstName:String = null with get,set /// ///Last Name /// [] member val lastName:String = null with get,set /// ///User's Password Expiration Date /// [] member val passwordExpirationDate:String = null with get,set /// ///If the User must change the password /// [] member val passwordMustBeChanged:Boolean = new Boolean() with get,set /// ///User Type of the User /// [] member val userType:String = null with get,set /// ///Culture ID of the User /// [] member val culture:String = null with get,set /// ///If the User account is locked /// [] member val accountLocked:Boolean = new Boolean() with get,set [] [] type GetUser() = interface IReturn /// ///User's UserID /// [] member val userId:String = null with get,set