io.formapi.SubmissionDataBatchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FormAPI Show documentation
Show all versions of FormAPI Show documentation
Java API client for the FormAPI PDF generation service
/*
* API v1
* FormAPI is a service that helps you fill out and sign PDF templates.
*
* OpenAPI spec version: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.formapi;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* SubmissionDataBatchRequest
*/
@javax.annotation.Generated(value = "io.formapi.codegen.FormApiJavaClientCodegen", date = "2019-04-11T21:22:41.142+07:00[Asia/Bangkok]")
public class SubmissionDataBatchRequest {
public static final String SERIALIZED_NAME_CSS = "css";
@SerializedName(SERIALIZED_NAME_CSS)
private String css = null;
public static final String SERIALIZED_NAME_METADATA = "metadata";
@SerializedName(SERIALIZED_NAME_METADATA)
private Object metadata = null;
public static final String SERIALIZED_NAME_TEST = "test";
@SerializedName(SERIALIZED_NAME_TEST)
private Boolean test = null;
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private Object data = null;
public static final String SERIALIZED_NAME_TEMPLATE_ID = "template_id";
@SerializedName(SERIALIZED_NAME_TEMPLATE_ID)
private String templateId = null;
public static final String SERIALIZED_NAME_HTML = "html";
@SerializedName(SERIALIZED_NAME_HTML)
private String html = null;
public SubmissionDataBatchRequest css(String css) {
this.css = css;
return this;
}
/**
* Get css
* @return css
**/
@ApiModelProperty(value = "")
public String getCss() {
return css;
}
public void setCss(String css) {
this.css = css;
}
public SubmissionDataBatchRequest metadata(Object metadata) {
this.metadata = metadata;
return this;
}
/**
* Get metadata
* @return metadata
**/
@ApiModelProperty(value = "")
public Object getMetadata() {
return metadata;
}
public void setMetadata(Object metadata) {
this.metadata = metadata;
}
public SubmissionDataBatchRequest test(Boolean test) {
this.test = test;
return this;
}
/**
* Get test
* @return test
**/
@ApiModelProperty(value = "")
public Boolean getTest() {
return test;
}
public void setTest(Boolean test) {
this.test = test;
}
public SubmissionDataBatchRequest data(Object data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@ApiModelProperty(value = "")
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public SubmissionDataBatchRequest templateId(String templateId) {
this.templateId = templateId;
return this;
}
/**
* Get templateId
* @return templateId
**/
@ApiModelProperty(value = "")
public String getTemplateId() {
return templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public SubmissionDataBatchRequest html(String html) {
this.html = html;
return this;
}
/**
* Get html
* @return html
**/
@ApiModelProperty(value = "")
public String getHtml() {
return html;
}
public void setHtml(String html) {
this.html = html;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SubmissionDataBatchRequest submissionDataBatchRequest = (SubmissionDataBatchRequest) o;
return Objects.equals(this.css, submissionDataBatchRequest.css) &&
Objects.equals(this.metadata, submissionDataBatchRequest.metadata) &&
Objects.equals(this.test, submissionDataBatchRequest.test) &&
Objects.equals(this.data, submissionDataBatchRequest.data) &&
Objects.equals(this.templateId, submissionDataBatchRequest.templateId) &&
Objects.equals(this.html, submissionDataBatchRequest.html);
}
@Override
public int hashCode() {
return Objects.hash(css, metadata, test, data, templateId, html);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SubmissionDataBatchRequest {\n");
sb.append(" css: ").append(toIndentedString(css)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" test: ").append(toIndentedString(test)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" templateId: ").append(toIndentedString(templateId)).append("\n");
sb.append(" html: ").append(toIndentedString(html)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy