com.microsoft.graph.beta.generated.models.BookingBusiness Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Represents a Microsoft Bookings Business.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class BookingBusiness extends BookingNamedEntity implements Parsable {
/**
* Instantiates a new {@link BookingBusiness} and sets the default values.
*/
public BookingBusiness() {
super();
this.setOdataType("#microsoft.graph.bookingBusiness");
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link BookingBusiness}
*/
@jakarta.annotation.Nonnull
public static BookingBusiness createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new BookingBusiness();
}
/**
* Gets the address property value. The street address of the business. The address property, together with phone and webSiteUrl, appear in the footer of a business scheduling page.
* @return a {@link PhysicalAddress}
*/
@jakarta.annotation.Nullable
public PhysicalAddress getAddress() {
return this.backingStore.get("address");
}
/**
* Gets the appointments property value. All the appointments of this business. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getAppointments() {
return this.backingStore.get("appointments");
}
/**
* Gets the bookingPageSettings property value. Settings for the published booking page.
* @return a {@link BookingPageSettings}
*/
@jakarta.annotation.Nullable
public BookingPageSettings getBookingPageSettings() {
return this.backingStore.get("bookingPageSettings");
}
/**
* Gets the businessHours property value. The hours of operation for the business.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getBusinessHours() {
return this.backingStore.get("businessHours");
}
/**
* Gets the businessType property value. The type of business.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getBusinessType() {
return this.backingStore.get("businessType");
}
/**
* Gets the calendarView property value. The set of appointments of this business in a specified date range. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCalendarView() {
return this.backingStore.get("calendarView");
}
/**
* Gets the createdDateTime property value. The date, time and timezone when the booking business was created.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getCreatedDateTime() {
return this.backingStore.get("createdDateTime");
}
/**
* Gets the customers property value. All the customers of this business. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCustomers() {
return this.backingStore.get("customers");
}
/**
* Gets the customQuestions property value. All custom questions of this business.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getCustomQuestions() {
return this.backingStore.get("customQuestions");
}
/**
* Gets the defaultCurrencyIso property value. The code for the currency that the business operates in on Microsoft Bookings.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDefaultCurrencyIso() {
return this.backingStore.get("defaultCurrencyIso");
}
/**
* Gets the email property value. The email address for the business.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getEmail() {
return this.backingStore.get("email");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("address", (n) -> { this.setAddress(n.getObjectValue(PhysicalAddress::createFromDiscriminatorValue)); });
deserializerMap.put("appointments", (n) -> { this.setAppointments(n.getCollectionOfObjectValues(BookingAppointment::createFromDiscriminatorValue)); });
deserializerMap.put("bookingPageSettings", (n) -> { this.setBookingPageSettings(n.getObjectValue(BookingPageSettings::createFromDiscriminatorValue)); });
deserializerMap.put("businessHours", (n) -> { this.setBusinessHours(n.getCollectionOfObjectValues(BookingWorkHours::createFromDiscriminatorValue)); });
deserializerMap.put("businessType", (n) -> { this.setBusinessType(n.getStringValue()); });
deserializerMap.put("calendarView", (n) -> { this.setCalendarView(n.getCollectionOfObjectValues(BookingAppointment::createFromDiscriminatorValue)); });
deserializerMap.put("createdDateTime", (n) -> { this.setCreatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("customers", (n) -> { this.setCustomers(n.getCollectionOfObjectValues(BookingCustomer::createFromDiscriminatorValue)); });
deserializerMap.put("customQuestions", (n) -> { this.setCustomQuestions(n.getCollectionOfObjectValues(BookingCustomQuestion::createFromDiscriminatorValue)); });
deserializerMap.put("defaultCurrencyIso", (n) -> { this.setDefaultCurrencyIso(n.getStringValue()); });
deserializerMap.put("email", (n) -> { this.setEmail(n.getStringValue()); });
deserializerMap.put("isPublished", (n) -> { this.setIsPublished(n.getBooleanValue()); });
deserializerMap.put("languageTag", (n) -> { this.setLanguageTag(n.getStringValue()); });
deserializerMap.put("lastUpdatedDateTime", (n) -> { this.setLastUpdatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("phone", (n) -> { this.setPhone(n.getStringValue()); });
deserializerMap.put("publicUrl", (n) -> { this.setPublicUrl(n.getStringValue()); });
deserializerMap.put("schedulingPolicy", (n) -> { this.setSchedulingPolicy(n.getObjectValue(BookingSchedulingPolicy::createFromDiscriminatorValue)); });
deserializerMap.put("services", (n) -> { this.setServices(n.getCollectionOfObjectValues(BookingService::createFromDiscriminatorValue)); });
deserializerMap.put("staffMembers", (n) -> { this.setStaffMembers(n.getCollectionOfObjectValues(BookingStaffMember::createFromDiscriminatorValue)); });
deserializerMap.put("webSiteUrl", (n) -> { this.setWebSiteUrl(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the isPublished property value. The scheduling page has been made available to external customers. Use the publish and unpublish actions to set this property. Read-only.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getIsPublished() {
return this.backingStore.get("isPublished");
}
/**
* Gets the languageTag property value. The language of the self service booking page
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getLanguageTag() {
return this.backingStore.get("languageTag");
}
/**
* Gets the lastUpdatedDateTime property value. The date, time and timezone when the booking business was last updated.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getLastUpdatedDateTime() {
return this.backingStore.get("lastUpdatedDateTime");
}
/**
* Gets the phone property value. The telephone number for the business. The phone property, together with address and webSiteUrl, appear in the footer of a business scheduling page.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getPhone() {
return this.backingStore.get("phone");
}
/**
* Gets the publicUrl property value. The URL for the scheduling page, which is set after you publish or unpublish the page. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getPublicUrl() {
return this.backingStore.get("publicUrl");
}
/**
* Gets the schedulingPolicy property value. Specifies how bookings can be created for this business.
* @return a {@link BookingSchedulingPolicy}
*/
@jakarta.annotation.Nullable
public BookingSchedulingPolicy getSchedulingPolicy() {
return this.backingStore.get("schedulingPolicy");
}
/**
* Gets the services property value. All the services offered by this business. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getServices() {
return this.backingStore.get("services");
}
/**
* Gets the staffMembers property value. All the staff members that provide services in this business. Read-only. Nullable.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getStaffMembers() {
return this.backingStore.get("staffMembers");
}
/**
* Gets the webSiteUrl property value. The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getWebSiteUrl() {
return this.backingStore.get("webSiteUrl");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeObjectValue("address", this.getAddress());
writer.writeCollectionOfObjectValues("appointments", this.getAppointments());
writer.writeObjectValue("bookingPageSettings", this.getBookingPageSettings());
writer.writeCollectionOfObjectValues("businessHours", this.getBusinessHours());
writer.writeStringValue("businessType", this.getBusinessType());
writer.writeCollectionOfObjectValues("calendarView", this.getCalendarView());
writer.writeOffsetDateTimeValue("createdDateTime", this.getCreatedDateTime());
writer.writeCollectionOfObjectValues("customers", this.getCustomers());
writer.writeCollectionOfObjectValues("customQuestions", this.getCustomQuestions());
writer.writeStringValue("defaultCurrencyIso", this.getDefaultCurrencyIso());
writer.writeStringValue("email", this.getEmail());
writer.writeStringValue("languageTag", this.getLanguageTag());
writer.writeOffsetDateTimeValue("lastUpdatedDateTime", this.getLastUpdatedDateTime());
writer.writeStringValue("phone", this.getPhone());
writer.writeObjectValue("schedulingPolicy", this.getSchedulingPolicy());
writer.writeCollectionOfObjectValues("services", this.getServices());
writer.writeCollectionOfObjectValues("staffMembers", this.getStaffMembers());
writer.writeStringValue("webSiteUrl", this.getWebSiteUrl());
}
/**
* Sets the address property value. The street address of the business. The address property, together with phone and webSiteUrl, appear in the footer of a business scheduling page.
* @param value Value to set for the address property.
*/
public void setAddress(@jakarta.annotation.Nullable final PhysicalAddress value) {
this.backingStore.set("address", value);
}
/**
* Sets the appointments property value. All the appointments of this business. Read-only. Nullable.
* @param value Value to set for the appointments property.
*/
public void setAppointments(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("appointments", value);
}
/**
* Sets the bookingPageSettings property value. Settings for the published booking page.
* @param value Value to set for the bookingPageSettings property.
*/
public void setBookingPageSettings(@jakarta.annotation.Nullable final BookingPageSettings value) {
this.backingStore.set("bookingPageSettings", value);
}
/**
* Sets the businessHours property value. The hours of operation for the business.
* @param value Value to set for the businessHours property.
*/
public void setBusinessHours(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("businessHours", value);
}
/**
* Sets the businessType property value. The type of business.
* @param value Value to set for the businessType property.
*/
public void setBusinessType(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("businessType", value);
}
/**
* Sets the calendarView property value. The set of appointments of this business in a specified date range. Read-only. Nullable.
* @param value Value to set for the calendarView property.
*/
public void setCalendarView(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("calendarView", value);
}
/**
* Sets the createdDateTime property value. The date, time and timezone when the booking business was created.
* @param value Value to set for the createdDateTime property.
*/
public void setCreatedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("createdDateTime", value);
}
/**
* Sets the customers property value. All the customers of this business. Read-only. Nullable.
* @param value Value to set for the customers property.
*/
public void setCustomers(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("customers", value);
}
/**
* Sets the customQuestions property value. All custom questions of this business.
* @param value Value to set for the customQuestions property.
*/
public void setCustomQuestions(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("customQuestions", value);
}
/**
* Sets the defaultCurrencyIso property value. The code for the currency that the business operates in on Microsoft Bookings.
* @param value Value to set for the defaultCurrencyIso property.
*/
public void setDefaultCurrencyIso(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("defaultCurrencyIso", value);
}
/**
* Sets the email property value. The email address for the business.
* @param value Value to set for the email property.
*/
public void setEmail(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("email", value);
}
/**
* Sets the isPublished property value. The scheduling page has been made available to external customers. Use the publish and unpublish actions to set this property. Read-only.
* @param value Value to set for the isPublished property.
*/
public void setIsPublished(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isPublished", value);
}
/**
* Sets the languageTag property value. The language of the self service booking page
* @param value Value to set for the languageTag property.
*/
public void setLanguageTag(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("languageTag", value);
}
/**
* Sets the lastUpdatedDateTime property value. The date, time and timezone when the booking business was last updated.
* @param value Value to set for the lastUpdatedDateTime property.
*/
public void setLastUpdatedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("lastUpdatedDateTime", value);
}
/**
* Sets the phone property value. The telephone number for the business. The phone property, together with address and webSiteUrl, appear in the footer of a business scheduling page.
* @param value Value to set for the phone property.
*/
public void setPhone(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("phone", value);
}
/**
* Sets the publicUrl property value. The URL for the scheduling page, which is set after you publish or unpublish the page. Read-only.
* @param value Value to set for the publicUrl property.
*/
public void setPublicUrl(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("publicUrl", value);
}
/**
* Sets the schedulingPolicy property value. Specifies how bookings can be created for this business.
* @param value Value to set for the schedulingPolicy property.
*/
public void setSchedulingPolicy(@jakarta.annotation.Nullable final BookingSchedulingPolicy value) {
this.backingStore.set("schedulingPolicy", value);
}
/**
* Sets the services property value. All the services offered by this business. Read-only. Nullable.
* @param value Value to set for the services property.
*/
public void setServices(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("services", value);
}
/**
* Sets the staffMembers property value. All the staff members that provide services in this business. Read-only. Nullable.
* @param value Value to set for the staffMembers property.
*/
public void setStaffMembers(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("staffMembers", value);
}
/**
* Sets the webSiteUrl property value. The URL of the business web site. The webSiteUrl property, together with address, phone, appear in the footer of a business scheduling page.
* @param value Value to set for the webSiteUrl property.
*/
public void setWebSiteUrl(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("webSiteUrl", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy