001package com.plivo.api.models.brand;
002
003public class Address {
004  private String street;
005  private String city;
006  private String state;
007  private String postalCode;
008  private String country;
009
010  public Address(String street, String city, String state, String postalCode, String country) {
011    this.street = street;
012    this.city = city;
013    this.state = state;
014    this.postalCode = postalCode;
015    this.country = country;
016  }
017
018  public Address() {
019  }
020
021  public String getStreet() {
022    return street;
023  }
024
025  public String getCity() {
026    return city;
027  }
028
029  public String getState() {
030    return state;
031  }
032
033  public String getPostalCode(){
034    return postalCode;
035  }
036
037  public String getCountry() {
038    return country;
039  }
040}