(* Options: Date: 2026-08-27 07:06:16 Version: 10.08 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: CreateUser.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Security.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type CreateUserResponse() = /// ///Unique Identifier of the User created in Booster /// [] member val UserId:Guid = new Guid() with get,set [] [] type CreateUser() = interface IReturn /// ///User E-mail /// [] member val email:String = null with get,set /// ///User First Name /// [] member val firstName:String = null with get,set /// ///User Last Name /// [] member val lastName:String = null with get,set /// ///User Culture /// [] member val culture:String = null with get,set /// ///Country Id /// [] member val countryId:String = null with get,set