We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1995a commit 0f82572Copy full SHA for 0f82572
1 file changed
src/main/java/com/easypost/model/BaseUser.java
@@ -1,6 +1,7 @@
1
package com.easypost.model;
2
3
import java.util.List;
4
+import com.google.gson.annotations.SerializedName;
5
import lombok.Getter;
6
7
@Getter
@@ -21,4 +22,7 @@ public class BaseUser extends EasyPostResource {
21
22
private String insuranceFeeRate;
23
private String insuranceFeeMinimum;
24
private List<User> children;
25
+
26
+ @SerializedName("api_keys")
27
+ private List<ApiKey> apiKeys;
28
}
0 commit comments