/* Options: Date: 2025-12-06 07:01:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //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: UpdateCustomBrandRequest.* //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 BackofficeApi; namespace BackofficeApi { public partial class BackofficePlaceCustomBrandDto { public long Id { get; set; } public PlacePlainDto DefinedByPlace { get; set; } public string Name { get; set; } } public partial class PlacePlainDto { public long Id { get; set; } public Guid Guid { get; set; } public string Name { get; set; } public float? Longitude { get; set; } public float? Latitude { get; set; } public bool Claimed { get; set; } public string? OrganizationNumber { get; set; } public string? Overview { get; set; } public string? TimeZoneDaylightName { get; set; } public string? TimeZoneDisplayName { get; set; } public string? TimeZoneStandardName { get; set; } public bool? TimeZoneSupportsDaylightSavingTime { get; set; } public long? BusinessId { get; set; } public string? ContactPhone { get; set; } public string? ContactEmail { get; set; } public string? ContactWebsite { get; set; } public string AddressStreet { get; set; } public string AddressPostalCode { get; set; } public string AddressRegion { get; set; } public string AddressCountryCode { get; set; } } [Route("/brand/update_custom", "PUT")] public partial class UpdateCustomBrandRequest : IReturn, IPut { public long Id { get; set; } public string Name { get; set; } } public partial class UpdateCustomBrandResponse { public BackofficePlaceCustomBrandDto CustomBrand { get; set; } } }