(* Options: Date: 2026-06-13 00:03:08 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SurvicateMetricsQuery.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set [] type SurvicateMetricsResponse() = /// ///Number of distinct bookings paid via Stripe for the company. /// [] member val StripePaidBookingsCount:Int32 = new Int32() with get,set /// ///Number of distinct bookings paid via Qvickly for the company. /// [] member val QvicklyPaidBookingsCount:Int32 = new Int32() with get,set /// ///Approximate number of bookings synced to a code lock / access control system. Derived from access-control external references (CodeLockAccessKey, IloqBookingKey); the system does not record confirmed syncs, so treat this as a proxy, not an exact count. /// [] member val CodelockSyncedBookingsCount:Int32 = new Int32() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] [] type SurvicateMetricsQuery() = interface IReturn /// ///Enter the company id. If blank and you are an admin, your own company id is used. /// [] member val CompanyId:Nullable = new Nullable() with get,set