Package com.adyen.model.transfers
Class TransferNotificationTransferTracking
- java.lang.Object
-
- com.adyen.model.transfers.TransferNotificationTransferTracking
-
public class TransferNotificationTransferTracking extends Object
TransferNotificationTransferTracking
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTransferNotificationTransferTracking.StatusEnumThe tracking status of the transfer.
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_ESTIMATED_ARRIVAL_TIMEstatic StringJSON_PROPERTY_STATUS
-
Constructor Summary
Constructors Constructor Description TransferNotificationTransferTracking()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this TransferNotificationTransferTracking object is equal to o.TransferNotificationTransferTrackingestimatedArrivalTime(OffsetDateTime estimatedArrivalTime)static TransferNotificationTransferTrackingfromJson(String jsonString)Create an instance of TransferNotificationTransferTracking given an JSON stringOffsetDateTimegetEstimatedArrivalTime()The estimated time the beneficiary should have access to the funds.TransferNotificationTransferTracking.StatusEnumgetStatus()The tracking status of the transfer.inthashCode()voidsetEstimatedArrivalTime(OffsetDateTime estimatedArrivalTime)The estimated time the beneficiary should have access to the funds.voidsetStatus(TransferNotificationTransferTracking.StatusEnum status)The tracking status of the transfer.TransferNotificationTransferTrackingstatus(TransferNotificationTransferTracking.StatusEnum status)StringtoJson()Convert an instance of TransferNotificationTransferTracking to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_ESTIMATED_ARRIVAL_TIME
public static final String JSON_PROPERTY_ESTIMATED_ARRIVAL_TIME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_STATUS
public static final String JSON_PROPERTY_STATUS
- See Also:
- Constant Field Values
-
-
Method Detail
-
estimatedArrivalTime
public TransferNotificationTransferTracking estimatedArrivalTime(OffsetDateTime estimatedArrivalTime)
-
getEstimatedArrivalTime
public OffsetDateTime getEstimatedArrivalTime()
The estimated time the beneficiary should have access to the funds.- Returns:
- estimatedArrivalTime
-
setEstimatedArrivalTime
public void setEstimatedArrivalTime(OffsetDateTime estimatedArrivalTime)
The estimated time the beneficiary should have access to the funds.- Parameters:
estimatedArrivalTime-
-
status
public TransferNotificationTransferTracking status(TransferNotificationTransferTracking.StatusEnum status)
-
getStatus
public TransferNotificationTransferTracking.StatusEnum getStatus()
The tracking status of the transfer.- Returns:
- status
-
setStatus
public void setStatus(TransferNotificationTransferTracking.StatusEnum status)
The tracking status of the transfer.- Parameters:
status-
-
equals
public boolean equals(Object o)
Return true if this TransferNotificationTransferTracking object is equal to o.
-
fromJson
public static TransferNotificationTransferTracking fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of TransferNotificationTransferTracking given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of TransferNotificationTransferTracking
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to TransferNotificationTransferTracking
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of TransferNotificationTransferTracking to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-