com.mailslurp.models.OrganizationInboxProjection 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;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
/**
* Organization team inbox
*/
@ApiModel(description = "Organization team inbox")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-03T06:03:24.997Z[GMT]")
public class OrganizationInboxProjection {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
private UUID id;
public static final String SERIALIZED_NAME_DOMAIN_ID = "domainId";
@SerializedName(SERIALIZED_NAME_DOMAIN_ID)
private UUID domainId;
public static final String SERIALIZED_NAME_CREATED_AT = "createdAt";
@SerializedName(SERIALIZED_NAME_CREATED_AT)
private OffsetDateTime createdAt;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_EMAIL_ADDRESS = "emailAddress";
@SerializedName(SERIALIZED_NAME_EMAIL_ADDRESS)
private String emailAddress;
public static final String SERIALIZED_NAME_FAVOURITE = "favourite";
@SerializedName(SERIALIZED_NAME_FAVOURITE)
private Boolean favourite;
public static final String SERIALIZED_NAME_TAGS = "tags";
@SerializedName(SERIALIZED_NAME_TAGS)
private List tags = null;
public static final String SERIALIZED_NAME_TEAM_ACCESS = "teamAccess";
@SerializedName(SERIALIZED_NAME_TEAM_ACCESS)
private Boolean teamAccess;
/**
* Type of inbox. HTTP inboxes are faster and better for most cases. SMTP inboxes are more suited for public facing inbound messages (but cannot send).
*/
@JsonAdapter(InboxTypeEnum.Adapter.class)
public enum InboxTypeEnum {
HTTP_INBOX("HTTP_INBOX"),
SMTP_INBOX("SMTP_INBOX");
private String value;
InboxTypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static InboxTypeEnum fromValue(String value) {
for (InboxTypeEnum b : InboxTypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final InboxTypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public InboxTypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return InboxTypeEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_INBOX_TYPE = "inboxType";
@SerializedName(SERIALIZED_NAME_INBOX_TYPE)
private InboxTypeEnum inboxType;
public static final String SERIALIZED_NAME_READ_ONLY = "readOnly";
@SerializedName(SERIALIZED_NAME_READ_ONLY)
private Boolean readOnly;
public static final String SERIALIZED_NAME_VIRTUAL_INBOX = "virtualInbox";
@SerializedName(SERIALIZED_NAME_VIRTUAL_INBOX)
private Boolean virtualInbox;
/**
* Inbox function if used as a primitive for another system.
*/
@JsonAdapter(FunctionsAsEnum.Adapter.class)
public enum FunctionsAsEnum {
ALIAS("ALIAS"),
THREAD("THREAD"),
CATCH_ALL("CATCH_ALL"),
CONNECTOR("CONNECTOR");
private String value;
FunctionsAsEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static FunctionsAsEnum fromValue(String value) {
for (FunctionsAsEnum b : FunctionsAsEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final FunctionsAsEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public FunctionsAsEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return FunctionsAsEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_FUNCTIONS_AS = "functionsAs";
@SerializedName(SERIALIZED_NAME_FUNCTIONS_AS)
private FunctionsAsEnum functionsAs;
public OrganizationInboxProjection id(UUID id) {
this.id = id;
return this;
}
/**
* ID of the inbox. The ID is a UUID-V4 format string. Use the inboxId for calls to Inbox and Email Controller endpoints. See the emailAddress property for the email address or the inbox. To get emails in an inbox use the WaitFor and Inbox Controller methods `waitForLatestEmail` and `getEmails` methods respectively. Inboxes can be used with aliases to forward emails automatically.
* @return id
**/
@ApiModelProperty(required = true, value = "ID of the inbox. The ID is a UUID-V4 format string. Use the inboxId for calls to Inbox and Email Controller endpoints. See the emailAddress property for the email address or the inbox. To get emails in an inbox use the WaitFor and Inbox Controller methods `waitForLatestEmail` and `getEmails` methods respectively. Inboxes can be used with aliases to forward emails automatically.")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public OrganizationInboxProjection domainId(UUID domainId) {
this.domainId = domainId;
return this;
}
/**
* ID of custom domain used by the inbox if any
* @return domainId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "ID of custom domain used by the inbox if any")
public UUID getDomainId() {
return domainId;
}
public void setDomainId(UUID domainId) {
this.domainId = domainId;
}
public OrganizationInboxProjection createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* When the inbox was created. Time stamps are in ISO DateTime Format `yyyy-MM-dd'T'HH:mm:ss.SSSXXX` e.g. `2000-10-31T01:30:00.000-05:00`.
* @return createdAt
**/
@ApiModelProperty(required = true, value = "When the inbox was created. Time stamps are in ISO DateTime Format `yyyy-MM-dd'T'HH:mm:ss.SSSXXX` e.g. `2000-10-31T01:30:00.000-05:00`.")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public OrganizationInboxProjection name(String name) {
this.name = name;
return this;
}
/**
* Name of the inbox and used as the sender name when sending emails .Displayed in the dashboard for easier search
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Name of the inbox and used as the sender name when sending emails .Displayed in the dashboard for easier search")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public OrganizationInboxProjection emailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* The inbox's email address. Inbox projections and previews may not include the email address. To view the email address fetch the inbox entity directly. Send an email to this address and the inbox will receive and store it for you. Note the email address in MailSlurp match characters exactly and are case sensitive so `+123` additions are considered different addresses. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.
* @return emailAddress
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The inbox's email address. Inbox projections and previews may not include the email address. To view the email address fetch the inbox entity directly. Send an email to this address and the inbox will receive and store it for you. Note the email address in MailSlurp match characters exactly and are case sensitive so `+123` additions are considered different addresses. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.")
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
public OrganizationInboxProjection favourite(Boolean favourite) {
this.favourite = favourite;
return this;
}
/**
* Is the inbox a favorite inbox. Make an inbox a favorite is typically done in the dashboard for quick access or filtering
* @return favourite
**/
@ApiModelProperty(required = true, value = "Is the inbox a favorite inbox. Make an inbox a favorite is typically done in the dashboard for quick access or filtering")
public Boolean getFavourite() {
return favourite;
}
public void setFavourite(Boolean favourite) {
this.favourite = favourite;
}
public OrganizationInboxProjection tags(List tags) {
this.tags = tags;
return this;
}
public OrganizationInboxProjection addTagsItem(String tagsItem) {
if (this.tags == null) {
this.tags = new ArrayList<>();
}
this.tags.add(tagsItem);
return this;
}
/**
* Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
* @return tags
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.")
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public OrganizationInboxProjection teamAccess(Boolean teamAccess) {
this.teamAccess = teamAccess;
return this;
}
/**
* Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it. See the team access guide at https://www.mailslurp.com/guides/team-email-account-sharing/
* @return teamAccess
**/
@ApiModelProperty(required = true, value = "Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it. See the team access guide at https://www.mailslurp.com/guides/team-email-account-sharing/")
public Boolean getTeamAccess() {
return teamAccess;
}
public void setTeamAccess(Boolean teamAccess) {
this.teamAccess = teamAccess;
}
public OrganizationInboxProjection inboxType(InboxTypeEnum inboxType) {
this.inboxType = inboxType;
return this;
}
/**
* Type of inbox. HTTP inboxes are faster and better for most cases. SMTP inboxes are more suited for public facing inbound messages (but cannot send).
* @return inboxType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Type of inbox. HTTP inboxes are faster and better for most cases. SMTP inboxes are more suited for public facing inbound messages (but cannot send).")
public InboxTypeEnum getInboxType() {
return inboxType;
}
public void setInboxType(InboxTypeEnum inboxType) {
this.inboxType = inboxType;
}
public OrganizationInboxProjection readOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
/**
* Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.
* @return readOnly
**/
@ApiModelProperty(required = true, value = "Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.")
public Boolean getReadOnly() {
return readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public OrganizationInboxProjection virtualInbox(Boolean virtualInbox) {
this.virtualInbox = virtualInbox;
return this;
}
/**
* Virtual inbox can receive email but will not send emails to real recipients. Will save sent email record but never send an actual email. Perfect for testing mail server actions.
* @return virtualInbox
**/
@ApiModelProperty(required = true, value = "Virtual inbox can receive email but will not send emails to real recipients. Will save sent email record but never send an actual email. Perfect for testing mail server actions.")
public Boolean getVirtualInbox() {
return virtualInbox;
}
public void setVirtualInbox(Boolean virtualInbox) {
this.virtualInbox = virtualInbox;
}
public OrganizationInboxProjection functionsAs(FunctionsAsEnum functionsAs) {
this.functionsAs = functionsAs;
return this;
}
/**
* Inbox function if used as a primitive for another system.
* @return functionsAs
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Inbox function if used as a primitive for another system.")
public FunctionsAsEnum getFunctionsAs() {
return functionsAs;
}
public void setFunctionsAs(FunctionsAsEnum functionsAs) {
this.functionsAs = functionsAs;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OrganizationInboxProjection organizationInboxProjection = (OrganizationInboxProjection) o;
return Objects.equals(this.id, organizationInboxProjection.id) &&
Objects.equals(this.domainId, organizationInboxProjection.domainId) &&
Objects.equals(this.createdAt, organizationInboxProjection.createdAt) &&
Objects.equals(this.name, organizationInboxProjection.name) &&
Objects.equals(this.emailAddress, organizationInboxProjection.emailAddress) &&
Objects.equals(this.favourite, organizationInboxProjection.favourite) &&
Objects.equals(this.tags, organizationInboxProjection.tags) &&
Objects.equals(this.teamAccess, organizationInboxProjection.teamAccess) &&
Objects.equals(this.inboxType, organizationInboxProjection.inboxType) &&
Objects.equals(this.readOnly, organizationInboxProjection.readOnly) &&
Objects.equals(this.virtualInbox, organizationInboxProjection.virtualInbox) &&
Objects.equals(this.functionsAs, organizationInboxProjection.functionsAs);
}
@Override
public int hashCode() {
return Objects.hash(id, domainId, createdAt, name, emailAddress, favourite, tags, teamAccess, inboxType, readOnly, virtualInbox, functionsAs);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrganizationInboxProjection {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" domainId: ").append(toIndentedString(domainId)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).append("\n");
sb.append(" favourite: ").append(toIndentedString(favourite)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
sb.append(" teamAccess: ").append(toIndentedString(teamAccess)).append("\n");
sb.append(" inboxType: ").append(toIndentedString(inboxType)).append("\n");
sb.append(" readOnly: ").append(toIndentedString(readOnly)).append("\n");
sb.append(" virtualInbox: ").append(toIndentedString(virtualInbox)).append("\n");
sb.append(" functionsAs: ").append(toIndentedString(functionsAs)).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 ");
}
}