Back to project page Android-iTunes-Client-Library.
The source code is released under:
Apache License
If you think the Android project Android-iTunes-Client-Library 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.tassioauad.androiditunesclientlibrary.service.entity; /*w w w.j a v a2 s . c om*/ /** * Created by Tssio on 09/06/2014. */ public class Content { public String url; public String fileSize; public String type; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getFileSize() { return fileSize; } public void setFileSize(String fileSize) { this.fileSize = fileSize; } public String getType() { return type; } public void setType(String type) { this.type = type; } }