com.podio.file.FileUploadResult 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 org.codehaus.jackson.annotate.JsonProperty;
public class FileUploadResult {
private int fileId;
@Override
public String toString() {
return "FileUploadResult [fileId=" + fileId + "]";
}
@JsonProperty("file_id")
public int getFileId() {
return fileId;
}
@JsonProperty("file_id")
public void setFileId(int fileId) {
this.fileId = fileId;
}
}