/* Options: Date: 2025-12-06 07:01:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAllCustomBrandsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BackofficeApi { @Route(Path="/brand/get_all_custom", Verbs="GET") public static class GetAllCustomBrandsRequest implements IReturn, IGet { private static Object responseType = GetAllCustomBrandsResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllCustomBrandsResponse { public ArrayList placeCustomBrands = new ArrayList(); public ArrayList getPlaceCustomBrands() { return placeCustomBrands; } public GetAllCustomBrandsResponse setPlaceCustomBrands(ArrayList value) { this.placeCustomBrands = value; return this; } } public static class BackofficePlaceCustomBrandDto { public Long id = null; public PlacePlainDto definedByPlace = null; public String name = null; public Long getId() { return id; } public BackofficePlaceCustomBrandDto setId(Long value) { this.id = value; return this; } public PlacePlainDto getDefinedByPlace() { return definedByPlace; } public BackofficePlaceCustomBrandDto setDefinedByPlace(PlacePlainDto value) { this.definedByPlace = value; return this; } public String getName() { return name; } public BackofficePlaceCustomBrandDto setName(String value) { this.name = value; return this; } } public static class PlacePlainDto { public Long id = null; public UUID guid = null; public String name = null; public Float longitude = null; public Float latitude = null; public Boolean claimed = null; public String organizationNumber = null; public String overview = null; public String timeZoneDaylightName = null; public String timeZoneDisplayName = null; public String timeZoneStandardName = null; public Boolean timeZoneSupportsDaylightSavingTime = null; public Long businessId = null; public String contactPhone = null; public String contactEmail = null; public String contactWebsite = null; public String addressStreet = null; public String addressPostalCode = null; public String addressRegion = null; public String addressCountryCode = null; public Long getId() { return id; } public PlacePlainDto setId(Long value) { this.id = value; return this; } public UUID getGuid() { return guid; } public PlacePlainDto setGuid(UUID value) { this.guid = value; return this; } public String getName() { return name; } public PlacePlainDto setName(String value) { this.name = value; return this; } public Float getLongitude() { return longitude; } public PlacePlainDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public PlacePlainDto setLatitude(Float value) { this.latitude = value; return this; } public Boolean isClaimed() { return claimed; } public PlacePlainDto setClaimed(Boolean value) { this.claimed = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlacePlainDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getOverview() { return overview; } public PlacePlainDto setOverview(String value) { this.overview = value; return this; } public String getTimeZoneDaylightName() { return timeZoneDaylightName; } public PlacePlainDto setTimeZoneDaylightName(String value) { this.timeZoneDaylightName = value; return this; } public String getTimeZoneDisplayName() { return timeZoneDisplayName; } public PlacePlainDto setTimeZoneDisplayName(String value) { this.timeZoneDisplayName = value; return this; } public String getTimeZoneStandardName() { return timeZoneStandardName; } public PlacePlainDto setTimeZoneStandardName(String value) { this.timeZoneStandardName = value; return this; } public Boolean isTimeZoneSupportsDaylightSavingTime() { return timeZoneSupportsDaylightSavingTime; } public PlacePlainDto setTimeZoneSupportsDaylightSavingTime(Boolean value) { this.timeZoneSupportsDaylightSavingTime = value; return this; } public Long getBusinessId() { return businessId; } public PlacePlainDto setBusinessId(Long value) { this.businessId = value; return this; } public String getContactPhone() { return contactPhone; } public PlacePlainDto setContactPhone(String value) { this.contactPhone = value; return this; } public String getContactEmail() { return contactEmail; } public PlacePlainDto setContactEmail(String value) { this.contactEmail = value; return this; } public String getContactWebsite() { return contactWebsite; } public PlacePlainDto setContactWebsite(String value) { this.contactWebsite = value; return this; } public String getAddressStreet() { return addressStreet; } public PlacePlainDto setAddressStreet(String value) { this.addressStreet = value; return this; } public String getAddressPostalCode() { return addressPostalCode; } public PlacePlainDto setAddressPostalCode(String value) { this.addressPostalCode = value; return this; } public String getAddressRegion() { return addressRegion; } public PlacePlainDto setAddressRegion(String value) { this.addressRegion = value; return this; } public String getAddressCountryCode() { return addressCountryCode; } public PlacePlainDto setAddressCountryCode(String value) { this.addressCountryCode = value; return this; } } }