com.mailslurp.models.EmailFeaturePlatformStatistics 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 com.mailslurp.models.EmailFeatureVersionStatistics;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* EmailFeaturePlatformStatistics
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-03T06:03:24.997Z[GMT]")
public class EmailFeaturePlatformStatistics {
/**
* Gets or Sets platform
*/
@JsonAdapter(PlatformEnum.Adapter.class)
public enum PlatformEnum {
ANDROID("android"),
DESKTOP_APP("desktop-app"),
DESKTOP_WEBMAIL("desktop-webmail"),
IOS("ios"),
MACOS("macos"),
MOBILE_WEBMAIL("mobile-webmail"),
OUTLOOK_COM("outlook-com"),
WEBMAIL("webmail"),
WINDOWS("windows"),
WINDOWS_MAIL("windows-mail");
private String value;
PlatformEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static PlatformEnum fromValue(String value) {
for (PlatformEnum b : PlatformEnum.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 PlatformEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public PlatformEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return PlatformEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_PLATFORM = "platform";
@SerializedName(SERIALIZED_NAME_PLATFORM)
private PlatformEnum platform;
public static final String SERIALIZED_NAME_VERSIONS = "versions";
@SerializedName(SERIALIZED_NAME_VERSIONS)
private List versions = new ArrayList<>();
public EmailFeaturePlatformStatistics platform(PlatformEnum platform) {
this.platform = platform;
return this;
}
/**
* Get platform
* @return platform
**/
@ApiModelProperty(required = true, value = "")
public PlatformEnum getPlatform() {
return platform;
}
public void setPlatform(PlatformEnum platform) {
this.platform = platform;
}
public EmailFeaturePlatformStatistics versions(List versions) {
this.versions = versions;
return this;
}
public EmailFeaturePlatformStatistics addVersionsItem(EmailFeatureVersionStatistics versionsItem) {
this.versions.add(versionsItem);
return this;
}
/**
* Get versions
* @return versions
**/
@ApiModelProperty(required = true, value = "")
public List getVersions() {
return versions;
}
public void setVersions(List versions) {
this.versions = versions;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EmailFeaturePlatformStatistics emailFeaturePlatformStatistics = (EmailFeaturePlatformStatistics) o;
return Objects.equals(this.platform, emailFeaturePlatformStatistics.platform) &&
Objects.equals(this.versions, emailFeaturePlatformStatistics.versions);
}
@Override
public int hashCode() {
return Objects.hash(platform, versions);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EmailFeaturePlatformStatistics {\n");
sb.append(" platform: ").append(toIndentedString(platform)).append("\n");
sb.append(" versions: ").append(toIndentedString(versions)).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 ");
}
}