Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## v8.4.1 (2025-12-01)

- Adds missing `apiKeys` field to `BaseUser`
- Removes unecessary `SerializedName` entries in `StatelessRate`

## v8.4.0 (2025-11-24)

- Adds the following functions:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your project's POM:
<dependency>
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>
<version>8.4.0</version>
<version>8.4.1</version>
</dependency>
```

Expand All @@ -25,7 +25,7 @@ Add this to your project's POM:
Add this to your project's build file:

```groovy
implementation "com.easypost:easypost-api-client:8.4.0"
implementation "com.easypost:easypost-api-client:8.4.1"
```

**NOTE:** [Google Gson](http://code.google.com/p/google-gson/) is required.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4.0
8.4.1
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.easypost</groupId>
<artifactId>easypost-api-client</artifactId>

<version>8.4.0</version>
<version>8.4.1</version>
<packaging>jar</packaging>

<name>com.easypost:easypost-api-client</name>
Expand Down
18 changes: 0 additions & 18 deletions src/main/java/com/easypost/model/StatelessRate.java
Original file line number Diff line number Diff line change
@@ -1,41 +1,23 @@
package com.easypost.model;

import com.google.gson.annotations.SerializedName;

import lombok.Getter;

@Getter
public class StatelessRate {
@SerializedName("delivery_date_guaranteed")
private Boolean deliveryDateGuaranteed;
@SerializedName("delivery_days")
private Integer deliveryDays;
@SerializedName("est_delivery_days")
private Integer estDeliveryDays;
@SerializedName("billing_type")
private String billingType;
@SerializedName("carrier")
private String carrier;
@SerializedName("carrier_account_id")
private String carrierAccountId;
@SerializedName("currency")
private String currency;
@SerializedName("delivery_date")
private String deliveryDate;
@SerializedName("list_currency")
private String listCurrency;
@SerializedName("list_rate")
private String listRate;
@SerializedName("mode")
private String mode;
@SerializedName("object")
private String object;
@SerializedName("rate")
private String rate;
@SerializedName("retail_currency")
private String retailCurrency;
@SerializedName("retail_rate")
private String retailRate;
@SerializedName("service")
private String service;
}
Loading