ClickSend.Model.InboundFaxRule 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 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.math.BigDecimal;
/**
* Model for Inbound FAX Rules
*/
@ApiModel(description = "Model for Inbound FAX Rules")
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-03-06T00:35:57.043Z")
public class InboundFaxRule {
@SerializedName("dedicated_number")
private String dedicatedNumber = null;
@SerializedName("rule_name")
private String ruleName = null;
@SerializedName("action")
private String action = null;
@SerializedName("action_address")
private String actionAddress = null;
@SerializedName("enabled")
private BigDecimal enabled = null;
public InboundFaxRule() {
//this.classType = this.getClass().getSimpleName();
}
public InboundFaxRule dedicatedNumber(String dedicatedNumber) {
this.dedicatedNumber = dedicatedNumber;
return this;
}
/**
* Dedicated Number. Can be '*' to apply to all numbers.
* @return dedicatedNumber
**/
@ApiModelProperty(required = true, value = "Dedicated Number. Can be '*' to apply to all numbers.")
public String getDedicatedNumber() {
return dedicatedNumber;
}
public void setDedicatedNumber(String dedicatedNumber) {
this.dedicatedNumber = dedicatedNumber;
}
public InboundFaxRule ruleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* Rule Name.
* @return ruleName
**/
@ApiModelProperty(required = true, value = "Rule Name.")
public String getRuleName() {
return ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public InboundFaxRule action(String action) {
this.action = action;
return this;
}
/**
* Action to be taken (AUTO_REPLY, EMAIL_USER, EMAIL_FIXED, URL, SMS, POLL, GROUP_SMS, MOVE_CONTACT, CREATE_CONTACT, CREATE_CONTACT_PLUS_EMAIL, CREATE_CONTACT_PLUS_NAME_EMAIL CREATE_CONTACT_PLUS_NAME, SMPP, NONE).
* @return action
**/
@ApiModelProperty(required = true, value = "Action to be taken (AUTO_REPLY, EMAIL_USER, EMAIL_FIXED, URL, SMS, POLL, GROUP_SMS, MOVE_CONTACT, CREATE_CONTACT, CREATE_CONTACT_PLUS_EMAIL, CREATE_CONTACT_PLUS_NAME_EMAIL CREATE_CONTACT_PLUS_NAME, SMPP, NONE).")
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public InboundFaxRule actionAddress(String actionAddress) {
this.actionAddress = actionAddress;
return this;
}
/**
* Action address.
* @return actionAddress
**/
@ApiModelProperty(required = true, value = "Action address.")
public String getActionAddress() {
return actionAddress;
}
public void setActionAddress(String actionAddress) {
this.actionAddress = actionAddress;
}
public InboundFaxRule enabled(BigDecimal enabled) {
this.enabled = enabled;
return this;
}
/**
* Enabled: Disabled=0 or Enabled=1.
* @return enabled
**/
@ApiModelProperty(required = true, value = "Enabled: Disabled=0 or Enabled=1.")
public BigDecimal getEnabled() {
return enabled;
}
public void setEnabled(BigDecimal enabled) {
this.enabled = enabled;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InboundFaxRule inboundFaxRule = (InboundFaxRule) o;
return Objects.equals(this.dedicatedNumber, inboundFaxRule.dedicatedNumber) &&
Objects.equals(this.ruleName, inboundFaxRule.ruleName) &&
Objects.equals(this.action, inboundFaxRule.action) &&
Objects.equals(this.actionAddress, inboundFaxRule.actionAddress) &&
Objects.equals(this.enabled, inboundFaxRule.enabled);
}
@Override
public int hashCode() {
return Objects.hash(dedicatedNumber, ruleName, action, actionAddress, enabled);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InboundFaxRule {\n");
sb.append(" dedicatedNumber: ").append(toIndentedString(dedicatedNumber)).append("\n");
sb.append(" ruleName: ").append(toIndentedString(ruleName)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).append("\n");
sb.append(" actionAddress: ").append(toIndentedString(actionAddress)).append("\n");
sb.append(" enabled: ").append(toIndentedString(enabled)).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 ");
}
}