Class PrimaryAddress
- java.lang.Object
-
- com.ellucian.generated.eedm.wealth_screening_requests.v6_0.PrimaryAddress
-
@Generated("jsonschema2pojo") public class PrimaryAddress extends Object
Primary AddressThe primary mail or residential address
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PrimaryAddress.Country
Country
-
Field Summary
Fields Modifier and Type Field Description private String
city
Cityprivate PrimaryAddress.Country
country
Countryprivate String
postalCode
Postal Codeprivate String
region
Regionprivate String
streetLine1
Street Line 1private String
streetLine2
Street Line 2
-
Constructor Summary
Constructors Constructor Description PrimaryAddress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getCity()
CityPrimaryAddress.Country
getCountry()
CountryString
getPostalCode()
Postal CodeString
getRegion()
RegionString
getStreetLine1()
Street Line 1String
getStreetLine2()
Street Line 2int
hashCode()
void
setCity(String city)
Cityvoid
setCountry(PrimaryAddress.Country country)
Countryvoid
setPostalCode(String postalCode)
Postal Codevoid
setRegion(String region)
Regionvoid
setStreetLine1(String streetLine1)
Street Line 1void
setStreetLine2(String streetLine2)
Street Line 2String
toString()
PrimaryAddress
withCity(String city)
PrimaryAddress
withCountry(PrimaryAddress.Country country)
PrimaryAddress
withPostalCode(String postalCode)
PrimaryAddress
withRegion(String region)
PrimaryAddress
withStreetLine1(String streetLine1)
PrimaryAddress
withStreetLine2(String streetLine2)
-
-
-
Field Detail
-
streetLine1
@JsonPropertyDescription("Line 1 of the street address") private String streetLine1
Street Line 1Line 1 of the street address
-
streetLine2
@JsonPropertyDescription("Line 2 of the street address") private String streetLine2
Street Line 2Line 2 of the street address
-
city
@JsonPropertyDescription("The city of residence") private String city
CityThe city of residence
-
region
@JsonPropertyDescription("The region within the country (state or province), in which the person resides") private String region
RegionThe region within the country (state or province), in which the person resides
-
postalCode
@JsonPropertyDescription("The postal (ZIP) code") private String postalCode
Postal CodeThe postal (ZIP) code
-
country
@JsonPropertyDescription("The ISO 3166-1 alpha-3 code of the country of residence") private PrimaryAddress.Country country
CountryThe ISO 3166-1 alpha-3 code of the country of residence
-
-
Method Detail
-
getStreetLine1
public String getStreetLine1()
Street Line 1Line 1 of the street address
-
setStreetLine1
public void setStreetLine1(String streetLine1)
Street Line 1Line 1 of the street address
-
withStreetLine1
public PrimaryAddress withStreetLine1(String streetLine1)
-
getStreetLine2
public String getStreetLine2()
Street Line 2Line 2 of the street address
-
setStreetLine2
public void setStreetLine2(String streetLine2)
Street Line 2Line 2 of the street address
-
withStreetLine2
public PrimaryAddress withStreetLine2(String streetLine2)
-
getCity
public String getCity()
CityThe city of residence
-
setCity
public void setCity(String city)
CityThe city of residence
-
withCity
public PrimaryAddress withCity(String city)
-
getRegion
public String getRegion()
RegionThe region within the country (state or province), in which the person resides
-
setRegion
public void setRegion(String region)
RegionThe region within the country (state or province), in which the person resides
-
withRegion
public PrimaryAddress withRegion(String region)
-
getPostalCode
public String getPostalCode()
Postal CodeThe postal (ZIP) code
-
setPostalCode
public void setPostalCode(String postalCode)
Postal CodeThe postal (ZIP) code
-
withPostalCode
public PrimaryAddress withPostalCode(String postalCode)
-
getCountry
public PrimaryAddress.Country getCountry()
CountryThe ISO 3166-1 alpha-3 code of the country of residence
-
setCountry
public void setCountry(PrimaryAddress.Country country)
CountryThe ISO 3166-1 alpha-3 code of the country of residence
-
withCountry
public PrimaryAddress withCountry(PrimaryAddress.Country country)
-
-