com.easypost.model.ApiKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypost-api-client Show documentation
Show all versions of easypost-api-client Show documentation
EasyPost Java Client Library for the EasyPost Shipping API
package com.easypost.model;
import com.easypost.net.EasyPostResource;
public class ApiKey extends EasyPostResource {
String mode;
String key;
public String getMode() { return mode; }
public void setMode(String mode) { this.mode = mode; }
public String getKey() { return key; }
public void setKey(String key) { this.key = key; }
}