001package com.gigya.android.sdk.account.models; 002 003import android.support.annotation.Nullable; 004 005import com.google.gson.annotations.SerializedName; 006 007public class Address { 008 009 @Nullable 010 private String country; 011 @Nullable 012 private String formatted; 013 @Nullable 014 private String locality; 015 @Nullable 016 @SerializedName("postal_code") 017 private String postalCode; 018 @Nullable 019 private String region; 020 @Nullable 021 @SerializedName("street_address") 022 private String streetAddress; 023 024 @Nullable 025 public String getCountry() { 026 return country; 027 } 028 029 public void setCountry(@Nullable String country) { 030 this.country = country; 031 } 032 033 @Nullable 034 public String getFormatted() { 035 return formatted; 036 } 037 038 public void setFormatted(@Nullable String formatted) { 039 this.formatted = formatted; 040 } 041 042 @Nullable 043 public String getLocality() { 044 return locality; 045 } 046 047 public void setLocality(@Nullable String locality) { 048 this.locality = locality; 049 } 050 051 @Nullable 052 public String getPostalCode() { 053 return postalCode; 054 } 055 056 public void setPostalCode(@Nullable String postalCode) { 057 this.postalCode = postalCode; 058 } 059 060 @Nullable 061 public String getRegion() { 062 return region; 063 } 064 065 public void setRegion(@Nullable String region) { 066 this.region = region; 067 } 068 069 @Nullable 070 public String getStreetAddress() { 071 return streetAddress; 072 } 073 074 public void setStreetAddress(@Nullable String streetAddress) { 075 this.streetAddress = streetAddress; 076 } 077}