ClickSend.Model.PostLetter Maven / Gradle / Ivy
The newest version!
/*
* ClickSend v3 API
* This is an official SDK for [ClickSend](https://clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](https://dashboard.clicksend.com/#/signup/step1/)..*
*
* OpenAPI spec version: 3.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package ClickSend.Model;
import java.util.Objects;
import java.util.Arrays;
import ClickSend.Model.PostRecipient;
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.util.ArrayList;
import java.util.List;
/**
* PostLetter model
*/
@ApiModel(description = "PostLetter model")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-06T00:35:57.043Z")
public class PostLetter {
@SerializedName("file_url")
private String fileUrl = null;
@SerializedName("priority_post")
private Integer priorityPost = 0;
@SerializedName("recipients")
private List recipients = new ArrayList();
@SerializedName("template_used")
private Integer templateUsed = 0;
@SerializedName("duplex")
private Integer duplex = 0;
@SerializedName("colour")
private Integer colour = 0;
@SerializedName("source")
private String source = "sdk";
public PostLetter() {
//this.classType = this.getClass().getSimpleName();
}
public PostLetter fileUrl(String fileUrl) {
this.fileUrl = fileUrl;
return this;
}
/**
* URL of file to send
* @return fileUrl
**/
@ApiModelProperty(required = true, value = "URL of file to send")
public String getFileUrl() {
return fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public PostLetter priorityPost(Integer priorityPost) {
this.priorityPost = priorityPost;
return this;
}
/**
* Whether letter is priority
* @return priorityPost
**/
@ApiModelProperty(example = "0", value = "Whether letter is priority")
public Integer getPriorityPost() {
return priorityPost;
}
public void setPriorityPost(Integer priorityPost) {
this.priorityPost = priorityPost;
}
public PostLetter recipients(List recipients) {
this.recipients = recipients;
return this;
}
public PostLetter addRecipientsItem(PostRecipient recipientsItem) {
this.recipients.add(recipientsItem);
return this;
}
/**
* Array of PostRecipient models
* @return recipients
**/
@ApiModelProperty(required = true, value = "Array of PostRecipient models")
public List getRecipients() {
return recipients;
}
public void setRecipients(List recipients) {
this.recipients = recipients;
}
public PostLetter templateUsed(Integer templateUsed) {
this.templateUsed = templateUsed;
return this;
}
/**
* Whether using our template
* @return templateUsed
**/
@ApiModelProperty(example = "0", value = "Whether using our template")
public Integer getTemplateUsed() {
return templateUsed;
}
public void setTemplateUsed(Integer templateUsed) {
this.templateUsed = templateUsed;
}
public PostLetter duplex(Integer duplex) {
this.duplex = duplex;
return this;
}
/**
* Whether letter is duplex
* @return duplex
**/
@ApiModelProperty(example = "0", value = "Whether letter is duplex")
public Integer getDuplex() {
return duplex;
}
public void setDuplex(Integer duplex) {
this.duplex = duplex;
}
public PostLetter colour(Integer colour) {
this.colour = colour;
return this;
}
/**
* Whether letter is in colour
* @return colour
**/
@ApiModelProperty(example = "0", value = "Whether letter is in colour")
public Integer getColour() {
return colour;
}
public void setColour(Integer colour) {
this.colour = colour;
}
public PostLetter source(String source) {
this.source = source;
return this;
}
/**
* Source being sent from
* @return source
**/
@ApiModelProperty(example = "sdk", value = "Source being sent from")
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PostLetter postLetter = (PostLetter) o;
return Objects.equals(this.fileUrl, postLetter.fileUrl) &&
Objects.equals(this.priorityPost, postLetter.priorityPost) &&
Objects.equals(this.recipients, postLetter.recipients) &&
Objects.equals(this.templateUsed, postLetter.templateUsed) &&
Objects.equals(this.duplex, postLetter.duplex) &&
Objects.equals(this.colour, postLetter.colour) &&
Objects.equals(this.source, postLetter.source);
}
@Override
public int hashCode() {
return Objects.hash(fileUrl, priorityPost, recipients, templateUsed, duplex, colour, source);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PostLetter {\n");
sb.append(" fileUrl: ").append(toIndentedString(fileUrl)).append("\n");
sb.append(" priorityPost: ").append(toIndentedString(priorityPost)).append("\n");
sb.append(" recipients: ").append(toIndentedString(recipients)).append("\n");
sb.append(" templateUsed: ").append(toIndentedString(templateUsed)).append("\n");
sb.append(" duplex: ").append(toIndentedString(duplex)).append("\n");
sb.append(" colour: ").append(toIndentedString(colour)).append("\n");
sb.append(" source: ").append(toIndentedString(source)).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 ");
}
}