com.mailslurp.models.SmsMatchOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailslurp-client-java Show documentation
Show all versions of mailslurp-client-java Show documentation
Official MailSlurp email API - create real inboxes then send and receive emails and attachments from tests and code.
The newest version!
/*
* MailSlurp API
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
*
* The version of the OpenAPI document: 6.5.2
* Contact: [email protected]
*
* 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.mailslurp.models;
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;
/**
* Options for matching SMS messages in a phone number. Each match option object contains a `field`, `should` and `value` property. Together they form logical conditions such as `BODY` should `CONTAIN` value.
*/
@ApiModel(description = "Options for matching SMS messages in a phone number. Each match option object contains a `field`, `should` and `value` property. Together they form logical conditions such as `BODY` should `CONTAIN` value.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-03T06:03:24.997Z[GMT]")
public class SmsMatchOption {
/**
* Fields of an SMS object that can be used to filter results
*/
@JsonAdapter(FieldEnum.Adapter.class)
public enum FieldEnum {
BODY("BODY"),
FROM("FROM");
private String value;
FieldEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static FieldEnum fromValue(String value) {
for (FieldEnum b : FieldEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final FieldEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public FieldEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return FieldEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_FIELD = "field";
@SerializedName(SERIALIZED_NAME_FIELD)
private FieldEnum field;
/**
* How the value of the email field specified should be compared to the value given in the match options.
*/
@JsonAdapter(ShouldEnum.Adapter.class)
public enum ShouldEnum {
MATCH("MATCH"),
CONTAIN("CONTAIN"),
EQUAL("EQUAL");
private String value;
ShouldEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ShouldEnum fromValue(String value) {
for (ShouldEnum b : ShouldEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final ShouldEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ShouldEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ShouldEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_SHOULD = "should";
@SerializedName(SERIALIZED_NAME_SHOULD)
private ShouldEnum should;
public static final String SERIALIZED_NAME_VALUE = "value";
@SerializedName(SERIALIZED_NAME_VALUE)
private String value;
public SmsMatchOption field(FieldEnum field) {
this.field = field;
return this;
}
/**
* Fields of an SMS object that can be used to filter results
* @return field
**/
@ApiModelProperty(required = true, value = "Fields of an SMS object that can be used to filter results")
public FieldEnum getField() {
return field;
}
public void setField(FieldEnum field) {
this.field = field;
}
public SmsMatchOption should(ShouldEnum should) {
this.should = should;
return this;
}
/**
* How the value of the email field specified should be compared to the value given in the match options.
* @return should
**/
@ApiModelProperty(required = true, value = "How the value of the email field specified should be compared to the value given in the match options.")
public ShouldEnum getShould() {
return should;
}
public void setShould(ShouldEnum should) {
this.should = should;
}
public SmsMatchOption value(String value) {
this.value = value;
return this;
}
/**
* The value you wish to compare with the value of the field specified using the `should` value passed. For example `BODY` should `CONTAIN` a value passed.
* @return value
**/
@ApiModelProperty(required = true, value = "The value you wish to compare with the value of the field specified using the `should` value passed. For example `BODY` should `CONTAIN` a value passed.")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SmsMatchOption smsMatchOption = (SmsMatchOption) o;
return Objects.equals(this.field, smsMatchOption.field) &&
Objects.equals(this.should, smsMatchOption.should) &&
Objects.equals(this.value, smsMatchOption.value);
}
@Override
public int hashCode() {
return Objects.hash(field, should, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SmsMatchOption {\n");
sb.append(" field: ").append(toIndentedString(field)).append("\n");
sb.append(" should: ").append(toIndentedString(should)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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 ");
}
}