package com.jaspersoft.jasperserver.jaxrs.client.apiadapters.reporting;
public class Attachment {
private String name;
private String mimeType;
private byte[] content;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
public byte[] getContent() {
return content;
}
public void setContent(byte[] content) {
this.content = content;
}
}