(* Options: Date: 2026-05-19 09:51:28 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: GetUsers.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Common.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IPagedRequest = abstract page:Int32 with get,set abstract items:Int32 with get,set abstract noCount:Boolean with get,set abstract sortBy:String with get,set [] type GetUserResponse() = /// ///Unique Identifier of a User /// [] member val userId:Guid = new Guid() with get,set /// ///User's Email address /// [] member val emailAddress:String = null with get,set /// ///First Name /// [] member val firstName:String = null with get,set /// ///Last Name /// [] member val lastName:String = null with get,set /// ///User's Password Expiration Date /// [] member val passwordExpirationDate:String = null with get,set /// ///If the User must change the password /// [] member val passwordMustBeChanged:Boolean = new Boolean() with get,set /// ///User Type of the User /// [] member val userType:String = null with get,set /// ///Culture ID of the User /// [] member val culture:String = null with get,set /// ///If the User account is locked /// [] member val accountLocked:Boolean = new Boolean() with get,set [] type GetUsersResponse() = /// ///Index of the result set returnedr /// [] member val page:Int32 = new Int32() with get,set /// ///Size of the result set returned /// [] member val items:Int32 = new Int32() with get,set /// ///Total amount of pages / result sets /// [] member val totalPages:Int32 = new Int32() with get,set /// ///Total amount of results /// [] member val totalResults:Int32 = new Int32() with get,set /// ///List of Users /// [] member val elements:IEnumerable = null with get,set [] [] type GetUsers() = interface IReturn /// ///Index of the result set returned /// [] member val page:Int32 = new Int32() with get,set /// ///Size of the result set returned /// [] member val items:Int32 = new Int32() with get,set /// ///Omit precise record count - save on performance /// [] member val noCount:Boolean = new Boolean() with get,set /// ///Sorting expression /// [] member val sortBy:String = null with get,set /// ///Email address /// [] member val email:String = null with get,set /// ///Also retreive users with locked account /// [] member val includeLockedAccounts:Nullable = new Nullable() with get,set