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 String
getApartment()
Apartment.CustomerAddressCity
getCity()
City information.String
getComments()
Additional info.CustomerAddressCountry
getCountry()
Country information.OffsetDateTime
getDateCreated()
Address date of creation.String
getFloor()
Floor.String
getId()
Address ID.CustomerAddressMunicipality
getMunicipality()
Municipality information.String
getName()
Address name.CustomerAddressNeighborhood
getNeighborhood()
Neighborhood information.String
getPhone()
Phone number.CustomerAddressState
getState()
State information.String
getStreetName()
Street name.String
getStreetNumber()
Street number.String
getZipCode()
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.
-
-