Enum Class BookingPriceType

java.lang.Object
java.lang.Enum<BookingPriceType>
com.microsoft.graph.models.BookingPriceType
All Implemented Interfaces:
com.microsoft.kiota.serialization.ValuedEnum, Serializable, Comparable<BookingPriceType>, Constable

@Generated("com.microsoft.kiota") public enum BookingPriceType extends Enum<BookingPriceType> implements com.microsoft.kiota.serialization.ValuedEnum
Represents the type of pricing of a booking service.
  • Enum Constant Details

    • Undefined

      public static final BookingPriceType Undefined
      The price of the service is not defined.
    • FixedPrice

      public static final BookingPriceType FixedPrice
      The price of the service is fixed.
    • StartingAt

      public static final BookingPriceType StartingAt
      The price of the service starts with a particular value, but can be higher based on the final services performed.
    • Hourly

      public static final BookingPriceType Hourly
      The price of the service depends on the number of hours a staff member works on the service.
    • Free

      public static final BookingPriceType Free
      The service is free.
    • PriceVaries

      public static final BookingPriceType PriceVaries
      The price of the service varies.
    • CallUs

      public static final BookingPriceType CallUs
      The price of the service is not listed.
    • NotSet

      public static final BookingPriceType NotSet
      The price of the service is not set.
    • UnknownFutureValue

      public static final BookingPriceType UnknownFutureValue
  • Field Details

    • value

      public final String value
  • Method Details

    • values

      public static BookingPriceType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static BookingPriceType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      @Nonnull public String getValue()
      Specified by:
      getValue in interface com.microsoft.kiota.serialization.ValuedEnum
    • forValue

      @Nullable public static BookingPriceType forValue(@Nonnull String searchValue)