sibModel.SendSmtpEmailMessageVersions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sib-api-v3-sdk Show documentation
Show all versions of sib-api-v3-sdk Show documentation
SendinBlue's API v3 Java Library
The newest version!
/*
* SendinBlue API
* SendinBlue provide a RESTFul API that can be used with any languages. With this API, you will be able to : - Manage your campaigns and get the statistics - Manage your contacts - Send transactional Emails and SMS - and much more... You can download our wrappers at https://github.com/orgs/sendinblue **Possible responses** | Code | Message | | :-------------: | ------------- | | 200 | OK. Successful Request | | 201 | OK. Successful Creation | | 202 | OK. Request accepted | | 204 | OK. Successful Update/Deletion | | 400 | Error. Bad Request | | 401 | Error. Authentication Needed | | 402 | Error. Not enough credit, plan upgrade needed | | 403 | Error. Permission denied | | 404 | Error. Object does not exist | | 405 | Error. Method not allowed | | 406 | Error. Not Acceptable |
*
* OpenAPI spec version: 3.0.0
* 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 sibModel;
import org.apache.commons.lang3.ObjectUtils;
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.HashMap;
import java.util.List;
import java.util.Map;
import sibModel.SendSmtpEmailBcc;
import sibModel.SendSmtpEmailCc;
import sibModel.SendSmtpEmailReplyTo1;
import sibModel.SendSmtpEmailTo1;
/**
* SendSmtpEmailMessageVersions
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2023-02-28T15:16:18.937+05:30")
public class SendSmtpEmailMessageVersions {
@SerializedName("to")
private List to = new ArrayList();
@SerializedName("params")
private Map params = null;
@SerializedName("bcc")
private List bcc = null;
@SerializedName("cc")
private List cc = null;
@SerializedName("replyTo")
private SendSmtpEmailReplyTo1 replyTo = null;
@SerializedName("subject")
private String subject = null;
public SendSmtpEmailMessageVersions to(List to) {
this.to = to;
return this;
}
public SendSmtpEmailMessageVersions addToItem(SendSmtpEmailTo1 toItem) {
this.to.add(toItem);
return this;
}
/**
* List of email addresses and names (_optional_) of the recipients. For example, [{\"name\":\"Jimmy\", \"email\":\"[email protected]\"}, {\"name\":\"Joe\", \"email\":\"[email protected]\"}]
* @return to
**/
@ApiModelProperty(required = true, value = "List of email addresses and names (_optional_) of the recipients. For example, [{\"name\":\"Jimmy\", \"email\":\"[email protected]\"}, {\"name\":\"Joe\", \"email\":\"[email protected]\"}]")
public List getTo() {
return to;
}
public void setTo(List to) {
this.to = to;
}
public SendSmtpEmailMessageVersions params(Map params) {
this.params = params;
return this;
}
public SendSmtpEmailMessageVersions putParamsItem(String key, Object paramsItem) {
if (this.params == null) {
this.params = new HashMap();
}
this.params.put(key, paramsItem);
return this;
}
/**
* Pass the set of attributes to customize the template. For example, {\"FNAME\":\"Joe\", \"LNAME\":\"Doe\"}. It's considered only if template is in New Template Language format.
* @return params
**/
@ApiModelProperty(example = "{\"FNAME\":\"Joe\",\"LNAME\":\"Doe\"}", value = "Pass the set of attributes to customize the template. For example, {\"FNAME\":\"Joe\", \"LNAME\":\"Doe\"}. It's considered only if template is in New Template Language format.")
public Map getParams() {
return params;
}
public void setParams(Map params) {
this.params = params;
}
public SendSmtpEmailMessageVersions bcc(List bcc) {
this.bcc = bcc;
return this;
}
public SendSmtpEmailMessageVersions addBccItem(SendSmtpEmailBcc bccItem) {
if (this.bcc == null) {
this.bcc = new ArrayList();
}
this.bcc.add(bccItem);
return this;
}
/**
* List of email addresses and names (optional) of the recipients in bcc
* @return bcc
**/
@ApiModelProperty(value = "List of email addresses and names (optional) of the recipients in bcc")
public List getBcc() {
return bcc;
}
public void setBcc(List bcc) {
this.bcc = bcc;
}
public SendSmtpEmailMessageVersions cc(List cc) {
this.cc = cc;
return this;
}
public SendSmtpEmailMessageVersions addCcItem(SendSmtpEmailCc ccItem) {
if (this.cc == null) {
this.cc = new ArrayList();
}
this.cc.add(ccItem);
return this;
}
/**
* List of email addresses and names (optional) of the recipients in cc
* @return cc
**/
@ApiModelProperty(value = "List of email addresses and names (optional) of the recipients in cc")
public List getCc() {
return cc;
}
public void setCc(List cc) {
this.cc = cc;
}
public SendSmtpEmailMessageVersions replyTo(SendSmtpEmailReplyTo1 replyTo) {
this.replyTo = replyTo;
return this;
}
/**
* Get replyTo
* @return replyTo
**/
@ApiModelProperty(value = "")
public SendSmtpEmailReplyTo1 getReplyTo() {
return replyTo;
}
public void setReplyTo(SendSmtpEmailReplyTo1 replyTo) {
this.replyTo = replyTo;
}
public SendSmtpEmailMessageVersions subject(String subject) {
this.subject = subject;
return this;
}
/**
* Custom subject specific to message version
* @return subject
**/
@ApiModelProperty(example = "Login Email confirmation", value = "Custom subject specific to message version ")
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SendSmtpEmailMessageVersions sendSmtpEmailMessageVersions = (SendSmtpEmailMessageVersions) o;
return ObjectUtils.equals(this.to, sendSmtpEmailMessageVersions.to) &&
ObjectUtils.equals(this.params, sendSmtpEmailMessageVersions.params) &&
ObjectUtils.equals(this.bcc, sendSmtpEmailMessageVersions.bcc) &&
ObjectUtils.equals(this.cc, sendSmtpEmailMessageVersions.cc) &&
ObjectUtils.equals(this.replyTo, sendSmtpEmailMessageVersions.replyTo) &&
ObjectUtils.equals(this.subject, sendSmtpEmailMessageVersions.subject);
}
@Override
public int hashCode() {
return ObjectUtils.hashCodeMulti(to, params, bcc, cc, replyTo, subject);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SendSmtpEmailMessageVersions {\n");
sb.append(" to: ").append(toIndentedString(to)).append("\n");
sb.append(" params: ").append(toIndentedString(params)).append("\n");
sb.append(" bcc: ").append(toIndentedString(bcc)).append("\n");
sb.append(" cc: ").append(toIndentedString(cc)).append("\n");
sb.append(" replyTo: ").append(toIndentedString(replyTo)).append("\n");
sb.append(" subject: ").append(toIndentedString(subject)).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