All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tinypass.client.publisher.model.ReportResponse Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.publisher.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

public class ReportResponse {

  /* The error message */
  private String error = null;
  

  /* The message */
  private String message = null;
  

  /* The report message */
  private String report = null;
  


  public String getError() {
    return error;
  }
  public void setError(String error) {
    this.error = error;
  }


  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  }


  public String getReport() {
    return report;
  }
  public void setReport(String report) {
    this.report = report;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class ReportResponse {\n");
    sb.append("  error: ").append(error).append("\n");
    sb.append("  message: ").append(message).append("\n");
    sb.append("  report: ").append(report).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy