com.softlayer.api.service.container.referral.partner.Prospect 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
package com.softlayer.api.service.container.referral.partner;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.survey.Response;
import java.util.ArrayList;
import java.util.List;
/**
* @see SoftLayer_Container_Referral_Partner_Prospect
*/
@ApiType("SoftLayer_Container_Referral_Partner_Prospect")
public class Prospect extends Entity {
@ApiProperty(canBeNullOrNotSet = true)
protected String address1;
public String getAddress1() {
return address1;
}
public void setAddress1(String address1) {
address1Specified = true;
this.address1 = address1;
}
protected boolean address1Specified;
public boolean isAddress1Specified() {
return address1Specified;
}
public void unsetAddress1() {
address1 = null;
address1Specified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected String address2;
public String getAddress2() {
return address2;
}
public void setAddress2(String address2) {
address2Specified = true;
this.address2 = address2;
}
protected boolean address2Specified;
public boolean isAddress2Specified() {
return address2Specified;
}
public void unsetAddress2() {
address2 = null;
address2Specified = 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 companyName;
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
companyNameSpecified = true;
this.companyName = companyName;
}
protected boolean companyNameSpecified;
public boolean isCompanyNameSpecified() {
return companyNameSpecified;
}
public void unsetCompanyName() {
companyName = null;
companyNameSpecified = 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 email;
public String getEmail() {
return email;
}
public void setEmail(String email) {
emailSpecified = true;
this.email = email;
}
protected boolean emailSpecified;
public boolean isEmailSpecified() {
return emailSpecified;
}
public void unsetEmail() {
email = null;
emailSpecified = 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 officePhone;
public String getOfficePhone() {
return officePhone;
}
public void setOfficePhone(String officePhone) {
officePhoneSpecified = true;
this.officePhone = officePhone;
}
protected boolean officePhoneSpecified;
public boolean isOfficePhoneSpecified() {
return officePhoneSpecified;
}
public void unsetOfficePhone() {
officePhone = null;
officePhoneSpecified = 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 List questions;
public List getQuestions() {
if (questions == null) {
questions = new ArrayList();
}
return questions;
}
protected boolean questionsSpecified;
public boolean isQuestionsSpecified() {
return questionsSpecified;
}
public void unsetQuestions() {
questions = null;
questionsSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected List responses;
public List getResponses() {
if (responses == null) {
responses = new ArrayList();
}
return responses;
}
protected boolean responsesSpecified;
public boolean isResponsesSpecified() {
return responsesSpecified;
}
public void unsetResponses() {
responses = null;
responsesSpecified = 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 surveyId;
public String getSurveyId() {
return surveyId;
}
public void setSurveyId(String surveyId) {
surveyIdSpecified = true;
this.surveyId = surveyId;
}
protected boolean surveyIdSpecified;
public boolean isSurveyIdSpecified() {
return surveyIdSpecified;
}
public void unsetSurveyId() {
surveyId = null;
surveyIdSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public Mask address1() {
withLocalProperty("address1");
return this;
}
public Mask address2() {
withLocalProperty("address2");
return this;
}
public Mask city() {
withLocalProperty("city");
return this;
}
public Mask companyName() {
withLocalProperty("companyName");
return this;
}
public Mask country() {
withLocalProperty("country");
return this;
}
public Mask email() {
withLocalProperty("email");
return this;
}
public Mask firstName() {
withLocalProperty("firstName");
return this;
}
public Mask lastName() {
withLocalProperty("lastName");
return this;
}
public Mask officePhone() {
withLocalProperty("officePhone");
return this;
}
public Mask postalCode() {
withLocalProperty("postalCode");
return this;
}
public Mask questions() {
withLocalProperty("questions");
return this;
}
public com.softlayer.api.service.survey.Response.Mask responses() {
return withSubMask("responses", com.softlayer.api.service.survey.Response.Mask.class);
}
public Mask state() {
withLocalProperty("state");
return this;
}
public Mask surveyId() {
withLocalProperty("surveyId");
return this;
}
}
}