(* Options: Date: 2026-05-19 09:51:29 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: GetUserAuth.* //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 Auth() = /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///List of Pos Group - in case of internal user /// [] member val posGroups:ResizeArray = new ResizeArray() with get,set /// ///Pos Code - in case of external users /// [] member val posCode:String = null with get,set /// ///List of user roles /// [] member val roles:ResizeArray = new ResizeArray() with get,set [] type GetUserAuthResponse() = inherit ResizeArray() [] [] type GetUserAuth() = interface IReturn /// ///User's UserID /// [] member val userId:String = null with get,set