Class AppointmentTimeInput
- java.lang.Object
-
- software.amazon.spapi.models.services.v1.AppointmentTimeInput
-
public class AppointmentTimeInput extends java.lang.Object
The input appointment time details.
-
-
Constructor Summary
Constructors Constructor Description AppointmentTimeInput()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppointmentTimeInput
durationInMinutes(java.lang.Integer durationInMinutes)
boolean
equals(java.lang.Object o)
java.lang.Integer
getDurationInMinutes()
The duration of an appointment in minutes.org.threeten.bp.OffsetDateTime
getStartTime()
The date, time in UTC for the start time of an appointment in ISO 8601 format.int
hashCode()
void
setDurationInMinutes(java.lang.Integer durationInMinutes)
void
setStartTime(org.threeten.bp.OffsetDateTime startTime)
AppointmentTimeInput
startTime(org.threeten.bp.OffsetDateTime startTime)
java.lang.String
toString()
-
-
-
Method Detail
-
startTime
public AppointmentTimeInput startTime(org.threeten.bp.OffsetDateTime startTime)
-
getStartTime
public org.threeten.bp.OffsetDateTime getStartTime()
The date, time in UTC for the start time of an appointment in ISO 8601 format.- Returns:
- startTime
-
setStartTime
public void setStartTime(org.threeten.bp.OffsetDateTime startTime)
-
durationInMinutes
public AppointmentTimeInput durationInMinutes(java.lang.Integer durationInMinutes)
-
getDurationInMinutes
public java.lang.Integer getDurationInMinutes()
The duration of an appointment in minutes.- Returns:
- durationInMinutes
-
setDurationInMinutes
public void setDurationInMinutes(java.lang.Integer durationInMinutes)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-