/* Options: Date: 2026-05-19 09:51:23 Version: 8.22 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: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetUser.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; 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 { [Route("/users/{userId}", "GET")] public partial class GetUser : IReturn { /// ///User's UserID /// [ApiMember(Description="User's UserID", IsRequired=true)] public virtual string userId { get; set; } } public partial class GetUserResponse { /// ///Unique Identifier of a User /// [ApiMember(Description="Unique Identifier of a User", IsRequired=true)] public virtual Guid userId { get; set; } /// ///User's Email address /// [ApiMember(Description="User's Email address", IsRequired=true)] public virtual string emailAddress { get; set; } /// ///First Name /// [ApiMember(Description="First Name", IsRequired=true)] public virtual string firstName { get; set; } /// ///Last Name /// [ApiMember(Description="Last Name", IsRequired=true)] public virtual string lastName { get; set; } /// ///User's Password Expiration Date /// [ApiMember(Description="User's Password Expiration Date")] public virtual string passwordExpirationDate { get; set; } /// ///If the User must change the password /// [ApiMember(Description="If the User must change the password", IsRequired=true)] public virtual bool passwordMustBeChanged { get; set; } /// ///User Type of the User /// [ApiMember(Description="User Type of the User", IsRequired=true)] public virtual string userType { get; set; } /// ///Culture ID of the User /// [ApiMember(Description="Culture ID of the User", IsRequired=true)] public virtual string culture { get; set; } /// ///If the User account is locked /// [ApiMember(Description="If the User account is locked", IsRequired=true)] public virtual bool accountLocked { get; set; } } }