Back to project page Android_Yellow_Pages_App_TDD.
The source code is released under:
Apache License
If you think the Android project Android_Yellow_Pages_App_TDD listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tddrampup.models; //w w w . j a v a 2 s.c o m import com.google.gson.annotations.Expose; import java.util.ArrayList; import java.util.List; public class Listing{ @Expose private String id; @Expose private String name; @Expose private Address address; @Expose private List<Phone> phones = new ArrayList<Phone>(); @Expose private GeoCode geoCode; @Expose private Products products; @Expose private String merchantUrl; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Address getAddress() { return address; } public void setAddress(Address address) { this.address = address; } public List<Phone> getPhones() { return phones; } public void setPhones(List<Phone> phones) { this.phones = phones; } public GeoCode getGeoCode() { return geoCode; } public void setGeoCode(GeoCode geoCode) { this.geoCode = geoCode; } public Products getProducts() { return products; } public void setProducts(Products products) { this.products = products; } public String getMerchantUrl() { return merchantUrl; } public void setMerchantUrl(String merchantUrl) { this.merchantUrl = merchantUrl; } }