Class CarrierAppointment
- java.lang.Object
-
- software.amazon.spapi.models.fulfillment.inbound.v2024_03_20.CarrierAppointment
-
public class CarrierAppointment extends java.lang.Object
Contains details for a transportation carrier appointment. This appointment is vended out by Amazon and is an indicator for when a transportation carrier is accepting shipments to be picked up.
-
-
Constructor Summary
Constructors Constructor Description CarrierAppointment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CarrierAppointment
endTime(org.threeten.bp.OffsetDateTime endTime)
boolean
equals(java.lang.Object o)
org.threeten.bp.OffsetDateTime
getEndTime()
The end timestamp of the appointment in UTC.org.threeten.bp.OffsetDateTime
getStartTime()
The start timestamp of the appointment in UTC.int
hashCode()
void
setEndTime(org.threeten.bp.OffsetDateTime endTime)
void
setStartTime(org.threeten.bp.OffsetDateTime startTime)
CarrierAppointment
startTime(org.threeten.bp.OffsetDateTime startTime)
java.lang.String
toString()
-
-
-
Method Detail
-
endTime
public CarrierAppointment endTime(org.threeten.bp.OffsetDateTime endTime)
-
getEndTime
public org.threeten.bp.OffsetDateTime getEndTime()
The end timestamp of the appointment in UTC.- Returns:
- endTime
-
setEndTime
public void setEndTime(org.threeten.bp.OffsetDateTime endTime)
-
startTime
public CarrierAppointment startTime(org.threeten.bp.OffsetDateTime startTime)
-
getStartTime
public org.threeten.bp.OffsetDateTime getStartTime()
The start timestamp of the appointment in UTC.- Returns:
- startTime
-
setStartTime
public void setStartTime(org.threeten.bp.OffsetDateTime startTime)
-
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
-
-