com.easypost.model.Form 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;
public class Form {
public String id;
String mode;
String formType;
String formUrl;
Boolean submittedElectronically;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public String getFormType() {
return formType;
}
public void setFormType(String formType) {
this.formType = formType;
}
public String getFormUrl() {
return formUrl;
}
public void setFormUrl(String formUrl) {
this.formUrl = formUrl;
}
public Boolean getSubmittedElectronically() {
return submittedElectronically;
}
public void setSubmittedElectronically(Boolean submittedElectronically) {
this.submittedElectronically = submittedElectronically;
}
}