syncloud.google.docs.model.Content Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syncloud-google-docs Show documentation
Show all versions of syncloud-google-docs Show documentation
Google Docs Syncloud Starage Adapter
The newest version!
package syncloud.google.docs.model;
import com.google.api.client.util.Key;
public class Content {
@Key("@type")
private String type;
@Key("@src")
private String src;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getSrc() {
return src;
}
public void setSrc(String src) {
this.src = src;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy