com.mozu.api.contracts.appdev.FileMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.contracts.appdev;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.joda.time.DateTime;
import java.io.IOException;
import java.lang.ClassNotFoundException;
import com.mozu.api.contracts.core.AuditInfo;
/**
* Properties of the metadata associated with a file or subfolder in a development or release package associated with an application version.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class FileMetadata implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
protected String checkSum;
public String getCheckSum() {
return this.checkSum;
}
public void setCheckSum(String checkSum) {
this.checkSum = checkSum;
}
protected String id;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
protected String path;
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
protected Long sizeInBytes;
public Long getSizeInBytes() {
return this.sizeInBytes;
}
public void setSizeInBytes(Long sizeInBytes) {
this.sizeInBytes = sizeInBytes;
}
protected String type;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
protected AuditInfo auditInfo;
public AuditInfo getAuditInfo() {
return this.auditInfo;
}
public void setAuditInfo(AuditInfo auditInfo) {
this.auditInfo = auditInfo;
}
}