001package com.gigya.android.sdk.account.models;
002
003import android.support.annotation.Nullable;
004
005public class Location {
006
007    @Nullable
008    private String city;
009    @Nullable
010    private String country;
011    @Nullable
012    private String state;
013    @Nullable
014    private Coordinates coordinates;
015
016    @Nullable
017    public String getCity() {
018        return city;
019    }
020
021    public void setCity(@Nullable String city) {
022        this.city = city;
023    }
024
025    @Nullable
026    public String getCountry() {
027        return country;
028    }
029
030    public void setCountry(@Nullable String country) {
031        this.country = country;
032    }
033
034    @Nullable
035    public String getState() {
036        return state;
037    }
038
039    public void setState(@Nullable String state) {
040        this.state = state;
041    }
042
043    @Nullable
044    public Coordinates getCoordinates() {
045        return coordinates;
046    }
047
048    public void setCoordinates(@Nullable Coordinates coordinates) {
049        this.coordinates = coordinates;
050    }
051}