Class CustomerAddress
- java.lang.Object
-
- com.mercadopago.resources.customer.CustomerAddress
-
public class CustomerAddress extends Object
Customer's address.
-
-
Constructor Summary
Constructors Constructor Description CustomerAddress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApartment()Apartment.CustomerAddressCitygetCity()City information.StringgetComments()Additional info.CustomerAddressCountrygetCountry()Country information.OffsetDateTimegetDateCreated()Address date of creation.StringgetFloor()Floor.StringgetId()Address ID.CustomerAddressMunicipalitygetMunicipality()Municipality information.StringgetName()Address name.CustomerAddressNeighborhoodgetNeighborhood()Neighborhood information.StringgetPhone()Phone number.CustomerAddressStategetState()State information.StringgetStreetName()Street name.StringgetStreetNumber()Street number.StringgetZipCode()Postal code.
-
-
-
Method Detail
-
getId
public String getId()
Address ID.
-
getPhone
public String getPhone()
Phone number.
-
getName
public String getName()
Address name.
-
getFloor
public String getFloor()
Floor.
-
getApartment
public String getApartment()
Apartment.
-
getStreetName
public String getStreetName()
Street name.
-
getStreetNumber
public String getStreetNumber()
Street number.
-
getZipCode
public String getZipCode()
Postal code.
-
getCity
public CustomerAddressCity getCity()
City information.
-
getState
public CustomerAddressState getState()
State information.
-
getCountry
public CustomerAddressCountry getCountry()
Country information.
-
getNeighborhood
public CustomerAddressNeighborhood getNeighborhood()
Neighborhood information.
-
getMunicipality
public CustomerAddressMunicipality getMunicipality()
Municipality information.
-
getComments
public String getComments()
Additional info.
-
getDateCreated
public OffsetDateTime getDateCreated()
Address date of creation.
-
-