/* Options: Date: 2026-04-05 19:04:44 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://monitoring.ox2.com/BazeField.Services/api //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: False //ExportValueTypes: False IncludeTypes: ReadMeasurementMetaData.* //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 Bazefield.Measurements.WebService; namespace Bazefield.Measurements.WebService { [Route("/measurements/{Keys}/metadata", "GET,POST")] public partial class ReadMeasurementMetaData : IReturn>, IPost { public virtual string[] Keys { get; set; } public virtual int? MaxResults { get; set; } } }