(* Options: Date: 2026-05-19 09:49:23 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: CreateUserAuth.* //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 AuthRequest() = /// ///POS Code (only for external users) /// [] member val posCode:String = null with get,set /// ///Roles for users (GUIDs). E.g. '731cd7f3-a781-48bf-b43d-310273895ce2' /// [] member val roles:ResizeArray = new ResizeArray() with get,set [] type CreateUserAuthResponse() = class end [] [] type CreateUserAuth() = interface IReturn /// ///User's UserID (GUID). E.g. '731cd7f3-a781-48bf-b43d-310273895ce2' /// [] member val userId:String = null with get,set /// ///Brand Trigram, e.g. CAR, IWC, VAC /// [] member val brand:String = null with get,set /// ///Authorization requests for the provided user /// [] member val authRequests:ResizeArray = new ResizeArray() with get,set