/* Options:
Date: 2026-08-27 07:06:59
Version: 10.08
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://dev-api-booster.richemont.com
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: True
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: GetUserAuth.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Richemont.Booster2.PublicApi.Security.ServiceModel;
namespace Richemont.Booster2.PublicApi.Security.ServiceModel
{
public partial class Auth
{
///
///Brand Trigram
///
[ApiMember(Description="Brand Trigram", IsRequired=true)]
public virtual string brand { get; set; }
///
///List of Pos Group - in case of internal user
///
[ApiMember(Description="List of Pos Group - in case of internal user")]
public virtual List? posGroups { get; set; }
///
///Pos Code - in case of external users
///
[ApiMember(Description="Pos Code - in case of external users")]
public virtual string? posCode { get; set; }
///
///Country ID of the POS
///
[ApiMember(Description="Country ID of the POS", IsRequired=true)]
public virtual string countryId { get; set; }
///
///List of user roles
///
[ApiMember(Description="List of user roles", IsRequired=true)]
public virtual List roles { get; set; } = [];
}
[Route("/user/{userId}/authorize", "GET")]
public partial class GetUserAuth
: IReturn
{
///
///User's UserID
///
[ApiMember(Description="User's UserID", IsRequired=true)]
public virtual string userId { get; set; }
}
public partial class GetUserAuthResponse
: List
{
}
}