/* Options: Date: 2025-05-06 15:25:45 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: EventsWithLocationRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using TicketUserServices.ServiceModel; using TicketUserServices.ServiceModel.Types; namespace TicketUserServices.ServiceModel { [Route("/EventsWithLocation", "GET")] [Route("/EventsWithLocation/MaxDays/{MaxDays}", "POST/GET")] public partial class EventsWithLocationRequest : IReturn { public virtual int? MaxDays { get; set; } } public partial class EventsWithLocationResult { public EventsWithLocationResult() { data = new List{}; } public virtual Status Status { get; set; } public virtual List data { get; set; } } public partial class Status { public virtual int StatusCode { get; set; } public virtual string StatusMessage { get; set; } public virtual string StatusDetails { get; set; } } } namespace TicketUserServices.ServiceModel.Types { public partial class EventWithLocation { public virtual int ID { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual DateTime TimeOfEvent { get; set; } public virtual bool EventActive { get; set; } public virtual bool? EventSeriesActive { get; set; } public virtual string EventLocationName { get; set; } public virtual decimal Latitude { get; set; } public virtual decimal Longitude { get; set; } public virtual string AddressName { get; set; } public virtual string AddressLine { get; set; } public virtual string Zip { get; set; } public virtual string City { get; set; } public virtual string CountryCode { get; set; } public virtual bool? PostPonedNoDate { get; set; } public virtual DateTime EndOfEvent { get; set; } } }