![JAR search and dependency download from the Maven repository](/logo.png)
com.podio.item.ItemCreate Maven / Gradle / Ivy
package com.podio.item;
import java.util.List;
import org.codehaus.jackson.annotate.JsonProperty;
public class ItemCreate extends ItemUpdate {
/**
* Temporary files that have been uploaded and should be attached to this
* item
*/
private List fileIds;
/**
* The tags to put on the item
*/
private List tags;
public ItemCreate() {
super();
}
public ItemCreate(String externalId, List fields,
List fileIds, List tags) {
super(externalId, fields);
this.fileIds = fileIds;
this.tags = tags;
}
@JsonProperty("file_ids")
public List getFileIds() {
return fileIds;
}
@JsonProperty("file_ids")
public void setFileIds(List fileIds) {
this.fileIds = fileIds;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy