(* Options: Date: 2026-05-19 10:45:07 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: GetCustomerKpi.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.CRM.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetCustomerKpiResponse() = /// ///Booster Customer ID /// [] member val boosterCustomerId:Int32 = new Int32() with get,set /// ///Total Transaction /// [] member val totalTransaction:Int32 = new Int32() with get,set /// ///Total Sales /// [] member val totalSales:Int32 = new Int32() with get,set /// ///Total Return /// [] member val totalReturn:Int32 = new Int32() with get,set /// ///Total Items /// [] member val totalItems:Int32 = new Int32() with get,set /// ///Average Basket Amount /// [] member val averageBasketAmount:Decimal = new Decimal() with get,set /// ///Total Spending Amount /// [] member val totalSpendingAmount:Double = new Double() with get,set /// ///Currency code e.g. 'EUR', 'CHF' /// [] member val currencyCode:String = null with get,set [] [] type GetCustomerKpi() = interface IReturn /// ///Booster Customer ID /// [] member val boosterCustomerId:Int32 = new Int32() with get,set /// ///Transaction Date From e.g. '2022-01-01' /// [] member val transactionDateFrom:Nullable = new Nullable() with get,set /// ///Transaction Date To e.g. '2023-11-01' /// [] member val transactionDateTo:Nullable = new Nullable() with get,set