/* Options: Date: 2025-12-06 06:59:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPlaceRequest.* //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 BusinessApi { @Route(Path="/place/get", Verbs="GET") public static class GetPlaceRequest implements IReturn, IGet, IHasPlaceId { public Long placeId = null; public Long getPlaceId() { return placeId; } public GetPlaceRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = GetPlaceResponse.class; public Object getResponseType() { return responseType; } } public static class GetPlaceResponse { public PlaceDto place = null; public PlaceDto getPlace() { return place; } public GetPlaceResponse setPlace(PlaceDto value) { this.place = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } public static enum Parking { StreetParking, ParkingGarageNearby; } public static enum PaymentOption { Visa, MasterCard, AmericanExpress, Diners, Vipps; } public static enum PriceMainDish { Value, Medium, High, FineDining; } public static class OpeningHours { public WeeklyOpeningHours weekly = null; public WeeklyOpeningHours getWeekly() { return weekly; } public OpeningHours setWeekly(WeeklyOpeningHours value) { this.weekly = value; return this; } } public static class BarTypeDto { public Long id = null; public String slug = null; public String title = null; public Long getId() { return id; } public BarTypeDto setId(Long value) { this.id = value; return this; } public String getSlug() { return slug; } public BarTypeDto setSlug(String value) { this.slug = value; return this; } public String getTitle() { return title; } public BarTypeDto setTitle(String value) { this.title = value; return this; } } public static class FeatureDto { public FeatureType slug = null; public String label = null; public FeatureType getSlug() { return slug; } public FeatureDto setSlug(FeatureType value) { this.slug = value; return this; } public String getLabel() { return label; } public FeatureDto setLabel(String value) { this.label = value; return this; } } public static class ParkingDto { public String label = null; public Parking slug = null; public String getLabel() { return label; } public ParkingDto setLabel(String value) { this.label = value; return this; } public Parking getSlug() { return slug; } public ParkingDto setSlug(Parking value) { this.slug = value; return this; } } public static class PaymentOptionDto { public String label = null; public PaymentOption slug = null; public String getLabel() { return label; } public PaymentOptionDto setLabel(String value) { this.label = value; return this; } public PaymentOption getSlug() { return slug; } public PaymentOptionDto setSlug(PaymentOption value) { this.slug = value; return this; } } public static class BarSpecialityDto { public Long id = null; public String slug = null; public String title = null; public Long getId() { return id; } public BarSpecialityDto setId(Long value) { this.id = value; return this; } public String getSlug() { return slug; } public BarSpecialityDto setSlug(String value) { this.slug = value; return this; } public String getTitle() { return title; } public BarSpecialityDto setTitle(String value) { this.title = value; return this; } } public static enum FeatureType { BarSpeciality, BarType, Cuisine, SaveFoodAndMoney, MealType, Menu, OutdoorSeating, Parking, PaymentOptions, PriceMainDish, SubCategories, SubCategoriesAndBrands, EatingSuitabilities, TakeAway, WearPriceProfile, WheelChairAccessible, Wifi, WebShop, Filtering; } public static class PriceMainDishDto { public String title = null; public PriceMainDish slug = null; public String getTitle() { return title; } public PriceMainDishDto setTitle(String value) { this.title = value; return this; } public PriceMainDish getSlug() { return slug; } public PriceMainDishDto setSlug(PriceMainDish value) { this.slug = value; return this; } } public static class BusinessWearPriceProfileDto { public Long id = null; public String label = null; public String slug = null; public Long getId() { return id; } public BusinessWearPriceProfileDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public BusinessWearPriceProfileDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public BusinessWearPriceProfileDto setSlug(String value) { this.slug = value; return this; } } public static class PlaceBasicDto { public Long id = null; public UUID guid = null; public String name = null; public Long businessId = null; public Float longitude = null; public Float latitude = null; public Boolean claimed = null; public String organizationNumber = null; public String countryCode = null; public String overview = null; public OpeningHours openingHours = null; public PlaceType placeType = null; public PlaceContact contact = null; public PlaceAddress address = null; public Boolean wheelChairAccessible = null; public Boolean wifi = null; public Boolean outdoorSeating = null; public Boolean saveFoodAndMoney = null; public TimeZoneDto timeZoneDto = null; public PriceMainDishDto priceMainDish = null; public ArrayList otherServices = new ArrayList(); public String floor = null; public Long getId() { return id; } public PlaceBasicDto setId(Long value) { this.id = value; return this; } public UUID getGuid() { return guid; } public PlaceBasicDto setGuid(UUID value) { this.guid = value; return this; } public String getName() { return name; } public PlaceBasicDto setName(String value) { this.name = value; return this; } public Long getBusinessId() { return businessId; } public PlaceBasicDto setBusinessId(Long value) { this.businessId = value; return this; } public Float getLongitude() { return longitude; } public PlaceBasicDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public PlaceBasicDto setLatitude(Float value) { this.latitude = value; return this; } public Boolean isClaimed() { return claimed; } public PlaceBasicDto setClaimed(Boolean value) { this.claimed = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceBasicDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getCountryCode() { return countryCode; } public PlaceBasicDto setCountryCode(String value) { this.countryCode = value; return this; } public String getOverview() { return overview; } public PlaceBasicDto setOverview(String value) { this.overview = value; return this; } public OpeningHours getOpeningHours() { return openingHours; } public PlaceBasicDto setOpeningHours(OpeningHours value) { this.openingHours = value; return this; } public PlaceType getPlaceType() { return placeType; } public PlaceBasicDto setPlaceType(PlaceType value) { this.placeType = value; return this; } public PlaceContact getContact() { return contact; } public PlaceBasicDto setContact(PlaceContact value) { this.contact = value; return this; } public PlaceAddress getAddress() { return address; } public PlaceBasicDto setAddress(PlaceAddress value) { this.address = value; return this; } public Boolean isWheelChairAccessible() { return wheelChairAccessible; } public PlaceBasicDto setWheelChairAccessible(Boolean value) { this.wheelChairAccessible = value; return this; } public Boolean isWifi() { return wifi; } public PlaceBasicDto setWifi(Boolean value) { this.wifi = value; return this; } public Boolean isOutdoorSeating() { return outdoorSeating; } public PlaceBasicDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; } public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; } public PlaceBasicDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; } public TimeZoneDto getTimeZoneDto() { return timeZoneDto; } public PlaceBasicDto setTimeZoneDto(TimeZoneDto value) { this.timeZoneDto = value; return this; } public PriceMainDishDto getPriceMainDish() { return priceMainDish; } public PlaceBasicDto setPriceMainDish(PriceMainDishDto value) { this.priceMainDish = value; return this; } public ArrayList getOtherServices() { return otherServices; } public PlaceBasicDto setOtherServices(ArrayList value) { this.otherServices = value; return this; } public String getFloor() { return floor; } public PlaceBasicDto setFloor(String value) { this.floor = value; return this; } } public static class TakeAwayDto { public Long id = null; public String label = null; public String slug = null; public Integer position = null; public Long getId() { return id; } public TakeAwayDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public TakeAwayDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public TakeAwayDto setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public TakeAwayDto setPosition(Integer value) { this.position = value; return this; } } public static class MealTypeDto { public Long id = null; public String label = null; public String slug = null; public Integer position = null; public Long getId() { return id; } public MealTypeDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public MealTypeDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public MealTypeDto setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public MealTypeDto setPosition(Integer value) { this.position = value; return this; } } public static class MallOtherServiceDto { public Long id = null; public String serviceName = null; public String floor = null; public Long getId() { return id; } public MallOtherServiceDto setId(Long value) { this.id = value; return this; } public String getServiceName() { return serviceName; } public MallOtherServiceDto setServiceName(String value) { this.serviceName = value; return this; } public String getFloor() { return floor; } public MallOtherServiceDto setFloor(String value) { this.floor = value; return this; } } public static class EatingSuitabilityDto { public String label = null; public EatingSuitability slug = null; public String getLabel() { return label; } public EatingSuitabilityDto setLabel(String value) { this.label = value; return this; } public EatingSuitability getSlug() { return slug; } public EatingSuitabilityDto setSlug(EatingSuitability value) { this.slug = value; return this; } } public static class CuisineDto { public Long id = null; public String label = null; public String slug = null; public Long getId() { return id; } public CuisineDto setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public CuisineDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public CuisineDto setSlug(String value) { this.slug = value; return this; } } public static class CategoryTreeWithFeaturesDto { public Long id = null; public String slug = null; public String absoluteSlug = null; public String name = null; public ArrayList children = new ArrayList(); public ArrayList featureTypes = new ArrayList(); public Long getId() { return id; } public CategoryTreeWithFeaturesDto setId(Long value) { this.id = value; return this; } public String getSlug() { return slug; } public CategoryTreeWithFeaturesDto setSlug(String value) { this.slug = value; return this; } public String getAbsoluteSlug() { return absoluteSlug; } public CategoryTreeWithFeaturesDto setAbsoluteSlug(String value) { this.absoluteSlug = value; return this; } public String getName() { return name; } public CategoryTreeWithFeaturesDto setName(String value) { this.name = value; return this; } public ArrayList getChildren() { return children; } public CategoryTreeWithFeaturesDto setChildren(ArrayList value) { this.children = value; return this; } public ArrayList getFeatureTypes() { return featureTypes; } public CategoryTreeWithFeaturesDto setFeatureTypes(ArrayList value) { this.featureTypes = value; return this; } } public static class BrandDto { public Long id = null; public Long definedByRootCategoryId = null; public String name = null; public Long getId() { return id; } public BrandDto setId(Long value) { this.id = value; return this; } public Long getDefinedByRootCategoryId() { return definedByRootCategoryId; } public BrandDto setDefinedByRootCategoryId(Long value) { this.definedByRootCategoryId = value; return this; } public String getName() { return name; } public BrandDto setName(String value) { this.name = value; return this; } } public static class PlaceDto { 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 countryCode = null; public String overview = null; public OpeningHours openingHours = null; public ArrayList featureData = new ArrayList(); public ArrayList categories = new ArrayList(); public CategoryDto rootCategory = null; public ArrayList menus = new ArrayList(); public ArrayList barSpecialities = new ArrayList(); public ArrayList barTypes = new ArrayList(); public ArrayList brands = new ArrayList(); public ArrayList cuisines = new ArrayList(); public ArrayList mealTypes = new ArrayList(); public ArrayList parking = new ArrayList(); public ArrayList paymentOptions = new ArrayList(); public ArrayList eatingSuitabilities = new ArrayList(); public ArrayList takeAways = new ArrayList(); public ArrayList wearPriceProfiles = new ArrayList(); public Boolean wheelChairAccessible = null; public Boolean wifi = null; public Boolean outdoorSeating = null; public Boolean saveFoodAndMoney = null; public String logoUrl = null; public String customImageUrl = null; public String categoryImageUrl = null; public PlaceType placeType = null; public ArrayList places = new ArrayList(); public ArrayList otherServices = new ArrayList(); public PlaceBasicDto mall = null; public String floor = null; public TimeZoneDto timeZoneDto = null; public Long businessId = null; public PlaceContact contact = null; public PlaceAddress address = null; public PriceMainDishDto priceMainDish = null; public Long getId() { return id; } public PlaceDto setId(Long value) { this.id = value; return this; } public UUID getGuid() { return guid; } public PlaceDto setGuid(UUID value) { this.guid = value; return this; } public String getName() { return name; } public PlaceDto setName(String value) { this.name = value; return this; } public Float getLongitude() { return longitude; } public PlaceDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public PlaceDto setLatitude(Float value) { this.latitude = value; return this; } public Boolean isClaimed() { return claimed; } public PlaceDto setClaimed(Boolean value) { this.claimed = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getCountryCode() { return countryCode; } public PlaceDto setCountryCode(String value) { this.countryCode = value; return this; } public String getOverview() { return overview; } public PlaceDto setOverview(String value) { this.overview = value; return this; } public OpeningHours getOpeningHours() { return openingHours; } public PlaceDto setOpeningHours(OpeningHours value) { this.openingHours = value; return this; } public ArrayList getFeatureData() { return featureData; } public PlaceDto setFeatureData(ArrayList value) { this.featureData = value; return this; } public ArrayList getCategories() { return categories; } public PlaceDto setCategories(ArrayList value) { this.categories = value; return this; } public CategoryDto getRootCategory() { return rootCategory; } public PlaceDto setRootCategory(CategoryDto value) { this.rootCategory = value; return this; } public ArrayList getMenus() { return menus; } public PlaceDto setMenus(ArrayList value) { this.menus = value; return this; } public ArrayList getBarSpecialities() { return barSpecialities; } public PlaceDto setBarSpecialities(ArrayList value) { this.barSpecialities = value; return this; } public ArrayList getBarTypes() { return barTypes; } public PlaceDto setBarTypes(ArrayList value) { this.barTypes = value; return this; } public ArrayList getBrands() { return brands; } public PlaceDto setBrands(ArrayList value) { this.brands = value; return this; } public ArrayList getCuisines() { return cuisines; } public PlaceDto setCuisines(ArrayList value) { this.cuisines = value; return this; } public ArrayList getMealTypes() { return mealTypes; } public PlaceDto setMealTypes(ArrayList value) { this.mealTypes = value; return this; } public ArrayList getParking() { return parking; } public PlaceDto setParking(ArrayList value) { this.parking = value; return this; } public ArrayList getPaymentOptions() { return paymentOptions; } public PlaceDto setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } public ArrayList getEatingSuitabilities() { return eatingSuitabilities; } public PlaceDto setEatingSuitabilities(ArrayList value) { this.eatingSuitabilities = value; return this; } public ArrayList getTakeAways() { return takeAways; } public PlaceDto setTakeAways(ArrayList value) { this.takeAways = value; return this; } public ArrayList getWearPriceProfiles() { return wearPriceProfiles; } public PlaceDto setWearPriceProfiles(ArrayList value) { this.wearPriceProfiles = value; return this; } public Boolean isWheelChairAccessible() { return wheelChairAccessible; } public PlaceDto setWheelChairAccessible(Boolean value) { this.wheelChairAccessible = value; return this; } public Boolean isWifi() { return wifi; } public PlaceDto setWifi(Boolean value) { this.wifi = value; return this; } public Boolean isOutdoorSeating() { return outdoorSeating; } public PlaceDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; } public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; } public PlaceDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; } public String getLogoUrl() { return logoUrl; } public PlaceDto setLogoUrl(String value) { this.logoUrl = value; return this; } public String getCustomImageUrl() { return customImageUrl; } public PlaceDto setCustomImageUrl(String value) { this.customImageUrl = value; return this; } public String getCategoryImageUrl() { return categoryImageUrl; } public PlaceDto setCategoryImageUrl(String value) { this.categoryImageUrl = value; return this; } public PlaceType getPlaceType() { return placeType; } public PlaceDto setPlaceType(PlaceType value) { this.placeType = value; return this; } public ArrayList getPlaces() { return places; } public PlaceDto setPlaces(ArrayList value) { this.places = value; return this; } public ArrayList getOtherServices() { return otherServices; } public PlaceDto setOtherServices(ArrayList value) { this.otherServices = value; return this; } public PlaceBasicDto getMall() { return mall; } public PlaceDto setMall(PlaceBasicDto value) { this.mall = value; return this; } public String getFloor() { return floor; } public PlaceDto setFloor(String value) { this.floor = value; return this; } public TimeZoneDto getTimeZoneDto() { return timeZoneDto; } public PlaceDto setTimeZoneDto(TimeZoneDto value) { this.timeZoneDto = value; return this; } public Long getBusinessId() { return businessId; } public PlaceDto setBusinessId(Long value) { this.businessId = value; return this; } public PlaceContact getContact() { return contact; } public PlaceDto setContact(PlaceContact value) { this.contact = value; return this; } public PlaceAddress getAddress() { return address; } public PlaceDto setAddress(PlaceAddress value) { this.address = value; return this; } public PriceMainDishDto getPriceMainDish() { return priceMainDish; } public PlaceDto setPriceMainDish(PriceMainDishDto value) { this.priceMainDish = value; return this; } } public static class BusinessMenuDto { public Long id = null; public String name = null; public String url = null; public Integer position = null; public Long getId() { return id; } public BusinessMenuDto setId(Long value) { this.id = value; return this; } public String getName() { return name; } public BusinessMenuDto setName(String value) { this.name = value; return this; } public String getUrl() { return url; } public BusinessMenuDto setUrl(String value) { this.url = value; return this; } public Integer getPosition() { return position; } public BusinessMenuDto setPosition(Integer value) { this.position = value; return this; } } public static class WeeklyOpeningHours { public OpeningHour monday = null; public OpeningHour tuesday = null; public OpeningHour wednesday = null; public OpeningHour thursday = null; public OpeningHour friday = null; public OpeningHour saturday = null; public OpeningHour sunday = null; public OpeningHour getMonday() { return monday; } public WeeklyOpeningHours setMonday(OpeningHour value) { this.monday = value; return this; } public OpeningHour getTuesday() { return tuesday; } public WeeklyOpeningHours setTuesday(OpeningHour value) { this.tuesday = value; return this; } public OpeningHour getWednesday() { return wednesday; } public WeeklyOpeningHours setWednesday(OpeningHour value) { this.wednesday = value; return this; } public OpeningHour getThursday() { return thursday; } public WeeklyOpeningHours setThursday(OpeningHour value) { this.thursday = value; return this; } public OpeningHour getFriday() { return friday; } public WeeklyOpeningHours setFriday(OpeningHour value) { this.friday = value; return this; } public OpeningHour getSaturday() { return saturday; } public WeeklyOpeningHours setSaturday(OpeningHour value) { this.saturday = value; return this; } public OpeningHour getSunday() { return sunday; } public WeeklyOpeningHours setSunday(OpeningHour value) { this.sunday = value; return this; } } public static enum PlaceType { Mall, Regular; } public static class PlaceContact { public String phone = null; public String email = null; public String website = null; public String webShop = null; public String getPhone() { return phone; } public PlaceContact setPhone(String value) { this.phone = value; return this; } public String getEmail() { return email; } public PlaceContact setEmail(String value) { this.email = value; return this; } public String getWebsite() { return website; } public PlaceContact setWebsite(String value) { this.website = value; return this; } public String getWebShop() { return webShop; } public PlaceContact setWebShop(String value) { this.webShop = value; return this; } } public static class PlaceAddress { public String street = null; public String postalCode = null; public String region = null; public String countryCode = null; public String getStreet() { return street; } public PlaceAddress setStreet(String value) { this.street = value; return this; } public String getPostalCode() { return postalCode; } public PlaceAddress setPostalCode(String value) { this.postalCode = value; return this; } public String getRegion() { return region; } public PlaceAddress setRegion(String value) { this.region = value; return this; } public String getCountryCode() { return countryCode; } public PlaceAddress setCountryCode(String value) { this.countryCode = value; return this; } } public static class TimeZoneDto { public TimeSpan baseUtcOffset = null; public String daylightName = null; public String displayName = null; public String id = null; public String standardName = null; public Boolean supportsDaylightSavingTime = null; public TimeSpan getBaseUtcOffset() { return baseUtcOffset; } public TimeZoneDto setBaseUtcOffset(TimeSpan value) { this.baseUtcOffset = value; return this; } public String getDaylightName() { return daylightName; } public TimeZoneDto setDaylightName(String value) { this.daylightName = value; return this; } public String getDisplayName() { return displayName; } public TimeZoneDto setDisplayName(String value) { this.displayName = value; return this; } public String getId() { return id; } public TimeZoneDto setId(String value) { this.id = value; return this; } public String getStandardName() { return standardName; } public TimeZoneDto setStandardName(String value) { this.standardName = value; return this; } public Boolean isSupportsDaylightSavingTime() { return supportsDaylightSavingTime; } public TimeZoneDto setSupportsDaylightSavingTime(Boolean value) { this.supportsDaylightSavingTime = value; return this; } } public static class EatingSuitability implements IAudit { public Long id = null; public String label = null; public String slug = null; public Integer position = null; public Date createdAt = null; public Date updatedAt = null; public Long getId() { return id; } public EatingSuitability setId(Long value) { this.id = value; return this; } public String getLabel() { return label; } public EatingSuitability setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public EatingSuitability setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public EatingSuitability setPosition(Integer value) { this.position = value; return this; } public Date getCreatedAt() { return createdAt; } public EatingSuitability setCreatedAt(Date value) { this.createdAt = value; return this; } public Date getUpdatedAt() { return updatedAt; } public EatingSuitability setUpdatedAt(Date value) { this.updatedAt = value; return this; } } public static class CategoryDto { public Long id = null; public String slug = null; public String absoluteSlug = null; public String name = null; public Long parentId = null; public Long getId() { return id; } public CategoryDto setId(Long value) { this.id = value; return this; } public String getSlug() { return slug; } public CategoryDto setSlug(String value) { this.slug = value; return this; } public String getAbsoluteSlug() { return absoluteSlug; } public CategoryDto setAbsoluteSlug(String value) { this.absoluteSlug = value; return this; } public String getName() { return name; } public CategoryDto setName(String value) { this.name = value; return this; } public Long getParentId() { return parentId; } public CategoryDto setParentId(Long value) { this.parentId = value; return this; } } public static class PlaceSelectedBrandDto { public Long id = null; public BrandDto brand = null; public CategoryDto category = null; public PlaceCustomBrandDto placeCustomBrand = null; public Long getId() { return id; } public PlaceSelectedBrandDto setId(Long value) { this.id = value; return this; } public BrandDto getBrand() { return brand; } public PlaceSelectedBrandDto setBrand(BrandDto value) { this.brand = value; return this; } public CategoryDto getCategory() { return category; } public PlaceSelectedBrandDto setCategory(CategoryDto value) { this.category = value; return this; } public PlaceCustomBrandDto getPlaceCustomBrand() { return placeCustomBrand; } public PlaceSelectedBrandDto setPlaceCustomBrand(PlaceCustomBrandDto value) { this.placeCustomBrand = value; return this; } } public static class OpeningHour { public Integer openAtHour = null; public Integer openAtMinute = null; public Integer closeAtHour = null; public Integer closeAtMinute = null; public Integer getOpenAtHour() { return openAtHour; } public OpeningHour setOpenAtHour(Integer value) { this.openAtHour = value; return this; } public Integer getOpenAtMinute() { return openAtMinute; } public OpeningHour setOpenAtMinute(Integer value) { this.openAtMinute = value; return this; } public Integer getCloseAtHour() { return closeAtHour; } public OpeningHour setCloseAtHour(Integer value) { this.closeAtHour = value; return this; } public Integer getCloseAtMinute() { return closeAtMinute; } public OpeningHour setCloseAtMinute(Integer value) { this.closeAtMinute = value; return this; } } public static interface IAudit { public Date createdAt = null; public Date updatedAt = null; } public static class PlaceCustomBrandDto { public Long id = null; public Long definedByPlaceId = null; public String name = null; public Long getId() { return id; } public PlaceCustomBrandDto setId(Long value) { this.id = value; return this; } public Long getDefinedByPlaceId() { return definedByPlaceId; } public PlaceCustomBrandDto setDefinedByPlaceId(Long value) { this.definedByPlaceId = value; return this; } public String getName() { return name; } public PlaceCustomBrandDto setName(String value) { this.name = value; return this; } } }