POST | /business/next-to-accept-invite |
---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class ConsumerApi
{
public static class NextToAcceptBusinessInviteRequest implements IPost
{
public String inviteKey = null;
public String getInviteKey() { return inviteKey; }
public NextToAcceptBusinessInviteRequest setInviteKey(String value) { this.inviteKey = value; return this; }
}
public static class NextToAcceptBusinessInviteResponse
{
public NextInviteStep nextStep = null;
public ClaimUserInfo user = null;
public PlaceBasicApiDto place = null;
public InviteInfo invite = null;
public NextInviteStep getNextStep() { return nextStep; }
public NextToAcceptBusinessInviteResponse setNextStep(NextInviteStep value) { this.nextStep = value; return this; }
public ClaimUserInfo getUser() { return user; }
public NextToAcceptBusinessInviteResponse setUser(ClaimUserInfo value) { this.user = value; return this; }
public PlaceBasicApiDto getPlace() { return place; }
public NextToAcceptBusinessInviteResponse setPlace(PlaceBasicApiDto value) { this.place = value; return this; }
public InviteInfo getInvite() { return invite; }
public NextToAcceptBusinessInviteResponse setInvite(InviteInfo value) { this.invite = value; return this; }
}
public static enum NextInviteStep
{
Authenticate,
AuthenticateWithVipps,
InviteIsForAnotherUser,
CreatePassword,
AcceptBusinessTermsOfService,
AcceptInvite;
}
public static class ClaimUserInfo
{
public String firstName = null;
public String lastName = null;
public String email = null;
public Boolean legalIdentityVerified = null;
public String phoneNumber = null;
public String getFirstName() { return firstName; }
public ClaimUserInfo setFirstName(String value) { this.firstName = value; return this; }
public String getLastName() { return lastName; }
public ClaimUserInfo setLastName(String value) { this.lastName = value; return this; }
public String getEmail() { return email; }
public ClaimUserInfo setEmail(String value) { this.email = value; return this; }
public Boolean isLegalIdentityVerified() { return legalIdentityVerified; }
public ClaimUserInfo setLegalIdentityVerified(Boolean value) { this.legalIdentityVerified = value; return this; }
public String getPhoneNumber() { return phoneNumber; }
public ClaimUserInfo setPhoneNumber(String value) { this.phoneNumber = value; return this; }
}
public static class PlaceBasicApiDto
{
public Long id = null;
public UUID guid = null;
public String overview = 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 OpeningHours openingHours = null;
public Boolean wheelchairAccessible = null;
public Boolean wifi = null;
public Boolean outdoorSeating = null;
public Boolean saveFoodAndMoney = null;
public PlaceType placeType = null;
public PriceMainDishApiDto priceMainDish = null;
public TimeZoneDto timeZoneDto = null;
public Long businessId = null;
public PlaceContact contact = null;
public PlaceAddress address = null;
public ArrayList<CategoryTreeApiDto> categories = new ArrayList<CategoryTreeApiDto>();
public ImageUrls logoUrl = null;
public ImageUrls imageUrl = null;
public ArrayList<WearPriceProfileEsDto> wearPriceProfiles = new ArrayList<WearPriceProfileEsDto>();
public ArrayList<PlaceSelectedBrandApiDto> brands = new ArrayList<PlaceSelectedBrandApiDto>();
public String floor = null;
public Long getId() { return id; }
public PlaceBasicApiDto setId(Long value) { this.id = value; return this; }
public UUID getGuid() { return guid; }
public PlaceBasicApiDto setGuid(UUID value) { this.guid = value; return this; }
public String getOverview() { return overview; }
public PlaceBasicApiDto setOverview(String value) { this.overview = value; return this; }
public String getName() { return name; }
public PlaceBasicApiDto setName(String value) { this.name = value; return this; }
public Float getLongitude() { return longitude; }
public PlaceBasicApiDto setLongitude(Float value) { this.longitude = value; return this; }
public Float getLatitude() { return latitude; }
public PlaceBasicApiDto setLatitude(Float value) { this.latitude = value; return this; }
public Boolean isClaimed() { return claimed; }
public PlaceBasicApiDto setClaimed(Boolean value) { this.claimed = value; return this; }
public String getOrganizationNumber() { return organizationNumber; }
public PlaceBasicApiDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; }
public String getCountryCode() { return countryCode; }
public PlaceBasicApiDto setCountryCode(String value) { this.countryCode = value; return this; }
public OpeningHours getOpeningHours() { return openingHours; }
public PlaceBasicApiDto setOpeningHours(OpeningHours value) { this.openingHours = value; return this; }
public Boolean isWheelchairAccessible() { return wheelchairAccessible; }
public PlaceBasicApiDto setWheelchairAccessible(Boolean value) { this.wheelchairAccessible = value; return this; }
public Boolean isWifi() { return wifi; }
public PlaceBasicApiDto setWifi(Boolean value) { this.wifi = value; return this; }
public Boolean isOutdoorSeating() { return outdoorSeating; }
public PlaceBasicApiDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; }
public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; }
public PlaceBasicApiDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; }
public PlaceType getPlaceType() { return placeType; }
public PlaceBasicApiDto setPlaceType(PlaceType value) { this.placeType = value; return this; }
public PriceMainDishApiDto getPriceMainDish() { return priceMainDish; }
public PlaceBasicApiDto setPriceMainDish(PriceMainDishApiDto value) { this.priceMainDish = value; return this; }
public TimeZoneDto getTimeZoneDto() { return timeZoneDto; }
public PlaceBasicApiDto setTimeZoneDto(TimeZoneDto value) { this.timeZoneDto = value; return this; }
public Long getBusinessId() { return businessId; }
public PlaceBasicApiDto setBusinessId(Long value) { this.businessId = value; return this; }
public PlaceContact getContact() { return contact; }
public PlaceBasicApiDto setContact(PlaceContact value) { this.contact = value; return this; }
public PlaceAddress getAddress() { return address; }
public PlaceBasicApiDto setAddress(PlaceAddress value) { this.address = value; return this; }
public ArrayList<CategoryTreeApiDto> getCategories() { return categories; }
public PlaceBasicApiDto setCategories(ArrayList<CategoryTreeApiDto> value) { this.categories = value; return this; }
public ImageUrls getLogoUrl() { return logoUrl; }
public PlaceBasicApiDto setLogoUrl(ImageUrls value) { this.logoUrl = value; return this; }
public ImageUrls getImageUrl() { return imageUrl; }
public PlaceBasicApiDto setImageUrl(ImageUrls value) { this.imageUrl = value; return this; }
public ArrayList<WearPriceProfileEsDto> getWearPriceProfiles() { return wearPriceProfiles; }
public PlaceBasicApiDto setWearPriceProfiles(ArrayList<WearPriceProfileEsDto> value) { this.wearPriceProfiles = value; return this; }
public ArrayList<PlaceSelectedBrandApiDto> getBrands() { return brands; }
public PlaceBasicApiDto setBrands(ArrayList<PlaceSelectedBrandApiDto> value) { this.brands = value; return this; }
public String getFloor() { return floor; }
public PlaceBasicApiDto setFloor(String value) { this.floor = value; return this; }
}
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 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 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 enum PlaceType
{
Mall,
Regular;
}
public static class PriceMainDishApiDto
{
public String title = null;
public PriceMainDish slug = null;
public String getTitle() { return title; }
public PriceMainDishApiDto setTitle(String value) { this.title = value; return this; }
public PriceMainDish getSlug() { return slug; }
public PriceMainDishApiDto setSlug(PriceMainDish value) { this.slug = value; return this; }
}
public static enum PriceMainDish
{
Value,
Medium,
High,
FineDining;
}
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 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 CategoryTreeApiDto
{
public String name = null;
public String slug = null;
public String absoluteSlug = null;
public String imageUrl = null;
public String allImageUrl = null;
public String iconImageUrl = null;
public Integer position = null;
public ArrayList<CategoryTreeApiDto> children = new ArrayList<CategoryTreeApiDto>();
public String getName() { return name; }
public CategoryTreeApiDto setName(String value) { this.name = value; return this; }
public String getSlug() { return slug; }
public CategoryTreeApiDto setSlug(String value) { this.slug = value; return this; }
public String getAbsoluteSlug() { return absoluteSlug; }
public CategoryTreeApiDto setAbsoluteSlug(String value) { this.absoluteSlug = value; return this; }
public String getImageUrl() { return imageUrl; }
public CategoryTreeApiDto setImageUrl(String value) { this.imageUrl = value; return this; }
public String getAllImageUrl() { return allImageUrl; }
public CategoryTreeApiDto setAllImageUrl(String value) { this.allImageUrl = value; return this; }
public String getIconImageUrl() { return iconImageUrl; }
public CategoryTreeApiDto setIconImageUrl(String value) { this.iconImageUrl = value; return this; }
public Integer getPosition() { return position; }
public CategoryTreeApiDto setPosition(Integer value) { this.position = value; return this; }
public ArrayList<CategoryTreeApiDto> getChildren() { return children; }
public CategoryTreeApiDto setChildren(ArrayList<CategoryTreeApiDto> value) { this.children = value; return this; }
}
public static class ImageUrls
{
public String preview = null;
public String small = null;
public String medium = null;
public String large = null;
public String getPreview() { return preview; }
public ImageUrls setPreview(String value) { this.preview = value; return this; }
public String getSmall() { return small; }
public ImageUrls setSmall(String value) { this.small = value; return this; }
public String getMedium() { return medium; }
public ImageUrls setMedium(String value) { this.medium = value; return this; }
public String getLarge() { return large; }
public ImageUrls setLarge(String value) { this.large = value; return this; }
}
public static class WearPriceProfileEsDto
{
public String slug = null;
public String label = null;
public String getSlug() { return slug; }
public WearPriceProfileEsDto setSlug(String value) { this.slug = value; return this; }
public String getLabel() { return label; }
public WearPriceProfileEsDto setLabel(String value) { this.label = value; return this; }
}
public static class PlaceSelectedBrandApiDto
{
public BrandApiDto brand = null;
public ArrayList<String> categoryAbsoluteSlugs = new ArrayList<String>();
public PlaceCustomBrandApiDto placeCustomBrand = null;
public BrandApiDto getBrand() { return brand; }
public PlaceSelectedBrandApiDto setBrand(BrandApiDto value) { this.brand = value; return this; }
public ArrayList<String> getCategoryAbsoluteSlugs() { return categoryAbsoluteSlugs; }
public PlaceSelectedBrandApiDto setCategoryAbsoluteSlugs(ArrayList<String> value) { this.categoryAbsoluteSlugs = value; return this; }
public PlaceCustomBrandApiDto getPlaceCustomBrand() { return placeCustomBrand; }
public PlaceSelectedBrandApiDto setPlaceCustomBrand(PlaceCustomBrandApiDto value) { this.placeCustomBrand = value; return this; }
}
public static class BrandApiDto
{
public String name = null;
public String getName() { return name; }
public BrandApiDto setName(String value) { this.name = value; return this; }
}
public static class PlaceCustomBrandApiDto
{
public String name = null;
public String getName() { return name; }
public PlaceCustomBrandApiDto setName(String value) { this.name = value; return this; }
}
public static class InviteInfo
{
public StaffRole staffRole = null;
public BusinessRole businessRole = null;
public BusinessInviteUserInfo invitingUser = null;
public StaffRole getStaffRole() { return staffRole; }
public InviteInfo setStaffRole(StaffRole value) { this.staffRole = value; return this; }
public BusinessRole getBusinessRole() { return businessRole; }
public InviteInfo setBusinessRole(BusinessRole value) { this.businessRole = value; return this; }
public BusinessInviteUserInfo getInvitingUser() { return invitingUser; }
public InviteInfo setInvitingUser(BusinessInviteUserInfo value) { this.invitingUser = value; return this; }
}
public static enum BusinessRole
{
Owner,
Manager,
Sales,
Marketing,
Other;
}
public static class BusinessInviteUserInfo
{
public String firstName = null;
public String lastName = null;
public String getFirstName() { return firstName; }
public BusinessInviteUserInfo setFirstName(String value) { this.firstName = value; return this; }
public String getLastName() { return lastName; }
public BusinessInviteUserInfo setLastName(String value) { this.lastName = value; return this; }
}
}
Java NextToAcceptBusinessInviteRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /business/next-to-accept-invite HTTP/1.1
Host: unstable-consumer-api.brovs.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<NextToAcceptBusinessInviteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Dto">
<InviteKey>String</InviteKey>
</NextToAcceptBusinessInviteRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <NextToAcceptBusinessInviteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Dto"> <Invite> <BusinessRole>Owner</BusinessRole> <InvitingUser> <FirstName>String</FirstName> <LastName>String</LastName> </InvitingUser> <StaffRole>Owner</StaffRole> </Invite> <NextStep>Authenticate</NextStep> <Place> <Address xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:CountryCode>String</d3p1:CountryCode> <d3p1:PostalCode>String</d3p1:PostalCode> <d3p1:Region>String</d3p1:Region> <d3p1:Street>String</d3p1:Street> </Address> <Brands> <PlaceSelectedBrandApiDto> <Brand> <Name>String</Name> </Brand> <CategoryAbsoluteSlugs xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:string>String</d5p1:string> </CategoryAbsoluteSlugs> <PlaceCustomBrand> <Name>String</Name> </PlaceCustomBrand> </PlaceSelectedBrandApiDto> </Brands> <BusinessId>0</BusinessId> <Categories> <CategoryTreeApiDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children> <CategoryTreeApiDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children> <CategoryTreeApiDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children i:nil="true" /> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> </CategoryTreeApiDto> </Children> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> </CategoryTreeApiDto> </Children> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> </CategoryTreeApiDto> </Categories> <Claimed>false</Claimed> <Contact xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:Email>String</d3p1:Email> <d3p1:Phone>String</d3p1:Phone> <d3p1:WebShop>String</d3p1:WebShop> <d3p1:Website>String</d3p1:Website> </Contact> <CountryCode>String</CountryCode> <Floor>String</Floor> <Guid>00000000-0000-0000-0000-000000000000</Guid> <Id>0</Id> <ImageUrl xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:Large>String</d3p1:Large> <d3p1:Medium>String</d3p1:Medium> <d3p1:Preview>String</d3p1:Preview> <d3p1:Small>String</d3p1:Small> </ImageUrl> <Latitude>0</Latitude> <LogoUrl xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:Large>String</d3p1:Large> <d3p1:Medium>String</d3p1:Medium> <d3p1:Preview>String</d3p1:Preview> <d3p1:Small>String</d3p1:Small> </LogoUrl> <Longitude>0</Longitude> <Name>String</Name> <OpeningHours xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:Weekly> <d3p1:Friday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Friday> <d3p1:Monday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Monday> <d3p1:Saturday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Saturday> <d3p1:Sunday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Sunday> <d3p1:Thursday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Thursday> <d3p1:Tuesday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Tuesday> <d3p1:Wednesday> <d3p1:CloseAtHour>0</d3p1:CloseAtHour> <d3p1:CloseAtMinute>0</d3p1:CloseAtMinute> <d3p1:OpenAtHour>0</d3p1:OpenAtHour> <d3p1:OpenAtMinute>0</d3p1:OpenAtMinute> </d3p1:Wednesday> </d3p1:Weekly> </OpeningHours> <OrganizationNumber>String</OrganizationNumber> <OutdoorSeating>false</OutdoorSeating> <Overview>String</Overview> <PlaceType>Mall</PlaceType> <PriceMainDish> <Slug>Value</Slug> <Title>String</Title> </PriceMainDish> <SaveFoodAndMoney>false</SaveFoodAndMoney> <TimeZoneDto xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d3p1:BaseUtcOffset>PT0S</d3p1:BaseUtcOffset> <d3p1:DaylightName>String</d3p1:DaylightName> <d3p1:DisplayName>String</d3p1:DisplayName> <d3p1:Id>String</d3p1:Id> <d3p1:StandardName>String</d3p1:StandardName> <d3p1:SupportsDaylightSavingTime>false</d3p1:SupportsDaylightSavingTime> </TimeZoneDto> <WearPriceProfiles> <WearPriceProfileEsDto> <Label>String</Label> <Slug>String</Slug> </WearPriceProfileEsDto> </WearPriceProfiles> <WheelchairAccessible>false</WheelchairAccessible> <Wifi>false</Wifi> </Place> <User> <Email>String</Email> <FirstName>String</FirstName> <LastName>String</LastName> <LegalIdentityVerified>false</LegalIdentityVerified> <PhoneNumber>String</PhoneNumber> </User> </NextToAcceptBusinessInviteResponse>