com.softlayer.api.service.container.billing.info.Ach Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
The newest version!
package com.softlayer.api.service.container.billing.info;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
/**
* @see SoftLayer_Container_Billing_Info_Ach
*/
@ApiType("SoftLayer_Container_Billing_Info_Ach")
public class Ach extends Entity {
@ApiProperty(canBeNullOrNotSet = true)
protected String accountNumber;
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
accountNumberSpecified = true;
this.accountNumber = accountNumber;
}
protected boolean accountNumberSpecified;
public boolean isAccountNumberSpecified() {
return accountNumberSpecified;
}
public void unsetAccountNumber() {
accountNumber = null;
accountNumberSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String accountType;
public String getAccountType() {
return accountType;
}
public void setAccountType(String accountType) {
accountTypeSpecified = true;
this.accountType = accountType;
}
protected boolean accountTypeSpecified;
public boolean isAccountTypeSpecified() {
return accountTypeSpecified;
}
public void unsetAccountType() {
accountType = null;
accountTypeSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String bankTransitNumber;
public String getBankTransitNumber() {
return bankTransitNumber;
}
public void setBankTransitNumber(String bankTransitNumber) {
bankTransitNumberSpecified = true;
this.bankTransitNumber = bankTransitNumber;
}
protected boolean bankTransitNumberSpecified;
public boolean isBankTransitNumberSpecified() {
return bankTransitNumberSpecified;
}
public void unsetBankTransitNumber() {
bankTransitNumber = null;
bankTransitNumberSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String city;
public String getCity() {
return city;
}
public void setCity(String city) {
citySpecified = true;
this.city = city;
}
protected boolean citySpecified;
public boolean isCitySpecified() {
return citySpecified;
}
public void unsetCity() {
city = null;
citySpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String country;
public String getCountry() {
return country;
}
public void setCountry(String country) {
countrySpecified = true;
this.country = country;
}
protected boolean countrySpecified;
public boolean isCountrySpecified() {
return countrySpecified;
}
public void unsetCountry() {
country = null;
countrySpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String federalTaxId;
public String getFederalTaxId() {
return federalTaxId;
}
public void setFederalTaxId(String federalTaxId) {
federalTaxIdSpecified = true;
this.federalTaxId = federalTaxId;
}
protected boolean federalTaxIdSpecified;
public boolean isFederalTaxIdSpecified() {
return federalTaxIdSpecified;
}
public void unsetFederalTaxId() {
federalTaxId = null;
federalTaxIdSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String firstName;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
firstNameSpecified = true;
this.firstName = firstName;
}
protected boolean firstNameSpecified;
public boolean isFirstNameSpecified() {
return firstNameSpecified;
}
public void unsetFirstName() {
firstName = null;
firstNameSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String lastName;
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
lastNameSpecified = true;
this.lastName = lastName;
}
protected boolean lastNameSpecified;
public boolean isLastNameSpecified() {
return lastNameSpecified;
}
public void unsetLastName() {
lastName = null;
lastNameSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String phoneNumber;
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
phoneNumberSpecified = true;
this.phoneNumber = phoneNumber;
}
protected boolean phoneNumberSpecified;
public boolean isPhoneNumberSpecified() {
return phoneNumberSpecified;
}
public void unsetPhoneNumber() {
phoneNumber = null;
phoneNumberSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String postalCode;
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
postalCodeSpecified = true;
this.postalCode = postalCode;
}
protected boolean postalCodeSpecified;
public boolean isPostalCodeSpecified() {
return postalCodeSpecified;
}
public void unsetPostalCode() {
postalCode = null;
postalCodeSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String state;
public String getState() {
return state;
}
public void setState(String state) {
stateSpecified = true;
this.state = state;
}
protected boolean stateSpecified;
public boolean isStateSpecified() {
return stateSpecified;
}
public void unsetState() {
state = null;
stateSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String street1;
public String getStreet1() {
return street1;
}
public void setStreet1(String street1) {
street1Specified = true;
this.street1 = street1;
}
protected boolean street1Specified;
public boolean isStreet1Specified() {
return street1Specified;
}
public void unsetStreet1() {
street1 = null;
street1Specified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String street2;
public String getStreet2() {
return street2;
}
public void setStreet2(String street2) {
street2Specified = true;
this.street2 = street2;
}
protected boolean street2Specified;
public boolean isStreet2Specified() {
return street2Specified;
}
public void unsetStreet2() {
street2 = null;
street2Specified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask accountNumber() {
withLocalProperty("accountNumber");
return this;
}
public Mask accountType() {
withLocalProperty("accountType");
return this;
}
public Mask bankTransitNumber() {
withLocalProperty("bankTransitNumber");
return this;
}
public Mask city() {
withLocalProperty("city");
return this;
}
public Mask country() {
withLocalProperty("country");
return this;
}
public Mask federalTaxId() {
withLocalProperty("federalTaxId");
return this;
}
public Mask firstName() {
withLocalProperty("firstName");
return this;
}
public Mask lastName() {
withLocalProperty("lastName");
return this;
}
public Mask phoneNumber() {
withLocalProperty("phoneNumber");
return this;
}
public Mask postalCode() {
withLocalProperty("postalCode");
return this;
}
public Mask state() {
withLocalProperty("state");
return this;
}
public Mask street1() {
withLocalProperty("street1");
return this;
}
public Mask street2() {
withLocalProperty("street2");
return this;
}
}
}