/* Options: Date: 2025-12-06 06:26:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetNearByMallRequest.* //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 BusinessApi; namespace BusinessApi { [Route("/place/get_nearby_mall", "GET")] public partial class GetNearByMallRequest : IReturn, IGet { public long PlaceId { get; set; } public float RadiusInKm { get; set; } } public partial class GetNearByMallResponse { public List Malls { get; set; } = []; } public partial class MallOtherServiceDto { public long Id { get; set; } public string ServiceName { get; set; } public string Floor { get; set; } } public partial class PlaceBasicDto { public long Id { get; set; } public Guid Guid { get; set; } public string Name { get; set; } public long? BusinessId { get; set; } public float? Longitude { get; set; } public float? Latitude { get; set; } public bool Claimed { get; set; } public string? OrganizationNumber { get; set; } public string CountryCode { get; set; } public string? Overview { get; set; } public OpeningHours? OpeningHours { get; set; } public PlaceType PlaceType { get; set; } public PlaceContact Contact { get; set; } public PlaceAddress Address { get; set; } public bool? WheelChairAccessible { get; set; } public bool? Wifi { get; set; } public bool? OutdoorSeating { get; set; } public bool? SaveFoodAndMoney { get; set; } public TimeZoneDto TimeZoneDto { get; set; } public PriceMainDishDto? PriceMainDish { get; set; } public List? OtherServices { get; set; } = []; public string? Floor { get; set; } } public partial class OpeningHour { public int OpenAtHour { get; set; } public int OpenAtMinute { get; set; } public int CloseAtHour { get; set; } public int CloseAtMinute { get; set; } } public partial class OpeningHours { public WeeklyOpeningHours Weekly { get; set; } } public partial class PlaceAddress { public string Street { get; set; } public string PostalCode { get; set; } public string Region { get; set; } public string CountryCode { get; set; } } public partial class PlaceContact { public string? Phone { get; set; } public string? Email { get; set; } public string? Website { get; set; } public string? WebShop { get; set; } } public enum PlaceType { Mall, Regular, } public partial class PriceMainDishDto { public string Title { get; set; } public PriceMainDish Slug { get; set; } } public partial class TimeZoneDto { public TimeSpan BaseUtcOffset { get; set; } public string DaylightName { get; set; } public string DisplayName { get; set; } public string Id { get; set; } public string StandardName { get; set; } public bool SupportsDaylightSavingTime { get; set; } } public partial class WeeklyOpeningHours { public OpeningHour? Monday { get; set; } public OpeningHour? Tuesday { get; set; } public OpeningHour? Wednesday { get; set; } public OpeningHour? Thursday { get; set; } public OpeningHour? Friday { get; set; } public OpeningHour? Saturday { get; set; } public OpeningHour? Sunday { get; set; } } public enum PriceMainDish { Value, Medium, High, FineDining, } }