package hr.com.port.ips.eracun.provider.mer.dto.ereporting;

public class EreportingResponse {

    private Boolean isSuccess;	
    private String reportingTimestamp; // v1.8: reportingTimestamp (ne fiscalizationTimestamp)
	private String encodedXml;

    public Boolean getIsSuccess() { return isSuccess; }
    public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; }

    public String getReportingTimestamp() { return reportingTimestamp; }
    public void setReportingTimestamp(String reportingTimestamp) { this.reportingTimestamp = reportingTimestamp; }

    public String getEncodedXml() { return encodedXml; }
    public void setEncodedXml(String encodedXml) { this.encodedXml = encodedXml; }
}