com.adzerk.sdk.generated.model.Content Maven / Gradle / Ivy
/*
* Adzerk Decision API
* Adzerk Decision API
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adzerk.sdk.generated.model;
import java.util.Objects;
import java.util.Arrays;
import com.adzerk.sdk.generated.model.DecisionData;
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;
import java.io.Serializable;
/**
* Content
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-13T12:24:36.097-04:00[America/New_York]")
public class Content implements Serializable {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public static final String SERIALIZED_NAME_TEMPLATE = "template";
@SerializedName(SERIALIZED_NAME_TEMPLATE)
private String template;
public static final String SERIALIZED_NAME_CUSTOM_TEMPLATE = "customTemplate";
@SerializedName(SERIALIZED_NAME_CUSTOM_TEMPLATE)
private String customTemplate;
public static final String SERIALIZED_NAME_DATA = "data";
@SerializedName(SERIALIZED_NAME_DATA)
private DecisionData data;
public static final String SERIALIZED_NAME_BODY = "body";
@SerializedName(SERIALIZED_NAME_BODY)
private String body;
public Content type(String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Content template(String template) {
this.template = template;
return this;
}
/**
* Get template
* @return template
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getTemplate() {
return template;
}
public void setTemplate(String template) {
this.template = template;
}
public Content customTemplate(String customTemplate) {
this.customTemplate = customTemplate;
return this;
}
/**
* Get customTemplate
* @return customTemplate
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getCustomTemplate() {
return customTemplate;
}
public void setCustomTemplate(String customTemplate) {
this.customTemplate = customTemplate;
}
public Content data(DecisionData data) {
this.data = data;
return this;
}
/**
* Get data
* @return data
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public DecisionData getData() {
return data;
}
public void setData(DecisionData data) {
this.data = data;
}
public Content body(String body) {
this.body = body;
return this;
}
/**
* Get body
* @return body
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Content content = (Content) o;
return Objects.equals(this.type, content.type) &&
Objects.equals(this.template, content.template) &&
Objects.equals(this.customTemplate, content.customTemplate) &&
Objects.equals(this.data, content.data) &&
Objects.equals(this.body, content.body);
}
@Override
public int hashCode() {
return Objects.hash(type, template, customTemplate, data, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Content {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" template: ").append(toIndentedString(template)).append("\n");
sb.append(" customTemplate: ").append(toIndentedString(customTemplate)).append("\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).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 ");
}
}