Class BookingCustomerInformation

java.lang.Object
com.microsoft.graph.models.BookingCustomerInformationBase
com.microsoft.graph.models.BookingCustomerInformation
All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject

public class BookingCustomerInformation extends BookingCustomerInformationBase implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Booking Customer Information.
  • Field Details

    • customerId

      @SerializedName(value="customerId", alternate="CustomerId") @Expose @Nullable public String customerId
      The Customer Id. The ID of the bookingCustomer for this appointment. If no ID is specified when an appointment is created, then a new bookingCustomer object is created. Once set, you should consider the customerId immutable.
    • customQuestionAnswers

      @SerializedName(value="customQuestionAnswers", alternate="CustomQuestionAnswers") @Expose @Nullable public List<BookingQuestionAnswer> customQuestionAnswers
      The Custom Question Answers. It consists of the list of custom questions and answers given by the customer as part of the appointment
    • emailAddress

      @SerializedName(value="emailAddress", alternate="EmailAddress") @Expose @Nullable public String emailAddress
      The Email Address. The SMTP address of the bookingCustomer who is booking the appointment
    • location

      @SerializedName(value="location", alternate="Location") @Expose @Nullable public Location location
      The Location. Represents location information for the bookingCustomer who is booking the appointment.
    • name

      @SerializedName(value="name", alternate="Name") @Expose @Nullable public String name
      The Name. The customer's name.
    • notes

      @SerializedName(value="notes", alternate="Notes") @Expose @Nullable public String notes
      The Notes. Notes from the customer associated with this appointment. You can get the value only when reading this bookingAppointment by its ID. You can set this property only when initially creating an appointment with a new customer. After that point, the value is computed from the customer represented by the customerId.
    • phone

      @SerializedName(value="phone", alternate="Phone") @Expose @Nullable public String phone
      The Phone. The customer's phone number.
    • timeZone

      @SerializedName(value="timeZone", alternate="TimeZone") @Expose @Nullable public String timeZone
      The Time Zone. The time zone of the customer. For a list of possible values, see dateTimeTimeZone.
  • Constructor Details

    • BookingCustomerInformation

      public BookingCustomerInformation()
  • 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:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Overrides:
      setRawObject in class BookingCustomerInformationBase
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to