forked from EasyPost/easypost-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseUser.java
More file actions
25 lines (23 loc) · 713 Bytes
/
BaseUser.java
File metadata and controls
25 lines (23 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.easypost.model;
import java.util.List;
import lombok.Getter;
@Getter
public class BaseUser extends EasyPostResource {
private String name;
private String email;
private String phoneNumber;
private String balance;
private String rechargeAmount;
private String secondaryRechargeAmount;
private String rechargeThreshold;
private String parentId;
private boolean verified;
private String pricePerShipment;
private boolean hasBillingMethod;
private String ccFeeRate;
private String defaultInsuranceAmount;
private String insuranceFeeRate;
private String insuranceFeeMinimum;
private List<User> children;
private List<ApiKey> apiKeys;
}