Package com.microsoft.graph.models
Class BookingCustomer
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.BookingCustomerBase
com.microsoft.graph.models.BookingCustomer
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class BookingCustomer
extends BookingCustomerBase
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Booking Customer.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Addresses.The Display Name.The Email Address.The Phones. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
addresses
@SerializedName(value="addresses", alternate="Addresses") @Expose @Nullable public List<PhysicalAddress> addressesThe Addresses. Addresses associated with the customer. The attribute type of physicalAddress is not supported in v1.0. Internally we map the addresses to the type others. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name is suitable for human-readable interfaces. -
emailAddress
@SerializedName(value="emailAddress", alternate="EmailAddress") @Expose @Nullable public String emailAddressThe Email Address. The SMTP address of the customer. -
phones
The Phones. Phone numbers associated with the customer, including home, business and mobile numbers.
-
-
Constructor Details
-
BookingCustomer
public BookingCustomer()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classBookingCustomerBase- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-