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.j a v a2 s . com import java.util.List; /** * Created by goman on 10/29/2014. */ public class OrganizationResponseEntity { private List<WorkspaceEntity> spaces; private String name; public String getName() { return name; } public List<WorkspaceEntity> getSpaces() { return spaces; } }