com.podio.file.FileReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.file;
import com.podio.common.Reference;
import com.podio.common.ReferenceType;
public class FileReference extends Reference {
/**
* The title of the reference
*/
private String title;
public FileReference() {
super();
}
public FileReference(ReferenceType type, int id, String title) {
super(type, id);
this.title = title;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}