/* Options: Date: 2026-06-13 00:03:06 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.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: SurvicateMetricsQuery.* //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 System.Globalization; using ServiceStack.Data; using System.Net; using System.Net.Http.Headers; using BokaMera.API.ServiceModel.Interfaces; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { [Route("/survicate/metrics", "GET")] [ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)] [ApiResponse(Description="You have too low privilegies to call this service", StatusCode=403)] [ValidateRequest("IsAuthenticated")] public partial class SurvicateMetricsQuery : IReturn, ICompany { /// ///Enter the company id. If blank and you are an admin, your own company id is used. /// [ApiMember(Description="Enter the company id. If blank and you are an admin, your own company id is used.", ParameterType="query")] public virtual Guid? CompanyId { get; set; } } public partial class SurvicateMetricsResponse { /// ///Number of distinct bookings paid via Stripe for the company. /// [ApiMember(Description="Number of distinct bookings paid via Stripe for the company.")] public virtual int StripePaidBookingsCount { get; set; } /// ///Number of distinct bookings paid via Qvickly for the company. /// [ApiMember(Description="Number of distinct bookings paid via Qvickly for the company.")] public virtual int QvicklyPaidBookingsCount { 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. /// [ApiMember(Description="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.")] public virtual int CodelockSyncedBookingsCount { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } } namespace BokaMera.API.ServiceModel.Interfaces { public partial interface ICompany { Guid? CompanyId { get; set; } } }