Class AddressType
- java.lang.Object
-
- com.fifa.connectid.sdk.core.api.models.AddressType
-
public class AddressType extends Object
The AddressType model.
-
-
Constructor Summary
Constructors Constructor Description AddressType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringaddress()Get the address value.Stringcountry()Get the country value.StringpostalCode()Get the postalCode value.Stringregion()Get the region value.Stringtown()Get the town value.AddressTypewithAddress(String address)Set the address value.AddressTypewithCountry(String country)Set the country value.AddressTypewithPostalCode(String postalCode)Set the postalCode value.AddressTypewithRegion(String region)Set the region value.AddressTypewithTown(String town)Set the town value.
-
-
-
Method Detail
-
country
public String country()
Get the country value.- Returns:
- the country value
-
withCountry
public AddressType withCountry(String country)
Set the country value.- Parameters:
country- the country value to set- Returns:
- the AddressType object itself.
-
region
public String region()
Get the region value.- Returns:
- the region value
-
withRegion
public AddressType withRegion(String region)
Set the region value.- Parameters:
region- the region value to set- Returns:
- the AddressType object itself.
-
postalCode
public String postalCode()
Get the postalCode value.- Returns:
- the postalCode value
-
withPostalCode
public AddressType withPostalCode(String postalCode)
Set the postalCode value.- Parameters:
postalCode- the postalCode value to set- Returns:
- the AddressType object itself.
-
town
public String town()
Get the town value.- Returns:
- the town value
-
withTown
public AddressType withTown(String town)
Set the town value.- Parameters:
town- the town value to set- Returns:
- the AddressType object itself.
-
address
public String address()
Get the address value.- Returns:
- the address value
-
withAddress
public AddressType withAddress(String address)
Set the address value.- Parameters:
address- the address value to set- Returns:
- the AddressType object itself.
-
-