Back to project page PodioPuzzle.
The source code is released under:
Apache License
If you think the Android project PodioPuzzle 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.podio.podiopuzzle.model; //from w w w . java 2 s . com import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.ArrayList; import java.util.List; /** * Created by goman on 30/10/14. */ public class Space { @Expose private Boolean premium; @Expose private String name; @Expose private List<String> rights = new ArrayList<String>(); @Expose private String url; @SerializedName("url_label") @Expose private String urlLabel; @SerializedName("space_id") @Expose private Integer spaceId; @SerializedName("org_id") @Expose private Integer orgId; @Expose private Integer rank; @Expose private String role; @Expose private Push push; @Expose private String type; @Expose private Boolean top; public Boolean getPremium() { return premium; } public void setPremium(Boolean premium) { this.premium = premium; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List<String> getRights() { return rights; } public void setRights(List<String> rights) { this.rights = rights; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getUrlLabel() { return urlLabel; } public void setUrlLabel(String urlLabel) { this.urlLabel = urlLabel; } public Integer getSpaceId() { return spaceId; } public void setSpaceId(Integer spaceId) { this.spaceId = spaceId; } public Integer getOrgId() { return orgId; } public void setOrgId(Integer orgId) { this.orgId = orgId; } public Integer getRank() { return rank; } public void setRank(Integer rank) { this.rank = rank; } public String getRole() { return role; } public void setRole(String role) { this.role = role; } public Push getPush() { return push; } public void setPush(Push push) { this.push = push; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Boolean getTop() { return top; } public void setTop(Boolean top) { this.top = top; } }