-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
53 additions
and
9 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
src/main/java/com/easypost/model/RecommendShipDateForShipmentResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.easypost.model; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class RecommendShipDateForShipmentResult { | ||
private TimeInTransitDetailsForShipDateRecommendation easypostTimeInTransitData; | ||
private Rate rate; | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/easypost/model/RecommendShipDateResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.easypost.model; | ||
|
||
import java.util.List; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class RecommendShipDateResponse { | ||
private List<RecommendShipDateForShipmentResult> rates; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/com/easypost/model/TimeInTransitDetailsForShipDate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.easypost.model; | ||
|
||
import java.util.Date; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class TimeInTransitDetailsForShipDate { | ||
private Date shipOnDate; | ||
private Float deliveryDateConfidence; | ||
private int estimatedTransitDays; | ||
private TimeInTransit daysInTransit; | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/com/easypost/model/TimeInTransitDetailsForShipDateRecommendation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.easypost.model; | ||
|
||
import java.util.Date; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class TimeInTransitDetailsForShipDateRecommendation { | ||
private Date desiredDeliveryDate; | ||
private Float deliveryDateConfidence; | ||
private String estimatedTransitDays; | ||
private String shipOnDate; | ||
private TimeInTransit daysInTransit; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters