
com.unblu.webapi.model.v3.PinRenewedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of models-v3 Show documentation
Show all versions of models-v3 Show documentation
Java classes corresponding to the JSON bodies
package com.unblu.webapi.model.v3;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* Pin created event
*/
@ApiModel(description = "Pin created event")
@JsonPropertyOrder({
PinRenewedEvent.JSON_PROPERTY_$_TYPE,
PinRenewedEvent.JSON_PROPERTY_TIMESTAMP,
PinRenewedEvent.JSON_PROPERTY_EVENT_TYPE,
PinRenewedEvent.JSON_PROPERTY_ACCOUNT_ID,
PinRenewedEvent.JSON_PROPERTY_INVITATION_ID,
PinRenewedEvent.JSON_PROPERTY_CONVERSATION_ID,
PinRenewedEvent.JSON_PROPERTY_CONVERSATION,
PinRenewedEvent.JSON_PROPERTY_TOKEN,
PinRenewedEvent.JSON_PROPERTY_DATE_CREATED,
PinRenewedEvent.JSON_PROPERTY_CREATOR_TYPE,
PinRenewedEvent.JSON_PROPERTY_CREATOR_PERSON,
PinRenewedEvent.JSON_PROPERTY_EXPIRATION_TIMESTAMP,
PinRenewedEvent.JSON_PROPERTY_LINKS,
})
@JsonAutoDetect(creatorVisibility = Visibility.NONE, fieldVisibility = Visibility.NONE, getterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
public class PinRenewedEvent {
/**
* Gets or Sets $type
*/
public enum TypeEnum {
PINRENEWEDEVENT("PinRenewedEvent");
private String value;
TypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static TypeEnum fromValue(String value) {
for (TypeEnum b : TypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
return TypeEnum.PINRENEWEDEVENT;
}
}
public static final String JSON_PROPERTY_$_TYPE = "$_type";
@JsonProperty(JSON_PROPERTY_$_TYPE)
private TypeEnum $type = TypeEnum.PINRENEWEDEVENT;
public static final String JSON_PROPERTY_TIMESTAMP = "timestamp";
@JsonProperty(JSON_PROPERTY_TIMESTAMP)
private Long timestamp;
public static final String JSON_PROPERTY_EVENT_TYPE = "eventType";
@JsonProperty(JSON_PROPERTY_EVENT_TYPE)
private String eventType;
public static final String JSON_PROPERTY_ACCOUNT_ID = "accountId";
@JsonProperty(JSON_PROPERTY_ACCOUNT_ID)
private String accountId;
public static final String JSON_PROPERTY_INVITATION_ID = "invitationId";
@JsonProperty(JSON_PROPERTY_INVITATION_ID)
private String invitationId;
public static final String JSON_PROPERTY_CONVERSATION_ID = "conversationId";
@JsonProperty(JSON_PROPERTY_CONVERSATION_ID)
private String conversationId;
public static final String JSON_PROPERTY_CONVERSATION = "conversation";
@JsonProperty(JSON_PROPERTY_CONVERSATION)
private ConversationData conversation = null;
public static final String JSON_PROPERTY_TOKEN = "token";
@JsonProperty(JSON_PROPERTY_TOKEN)
private String token;
public static final String JSON_PROPERTY_DATE_CREATED = "dateCreated";
@JsonProperty(JSON_PROPERTY_DATE_CREATED)
private Long dateCreated;
public static final String JSON_PROPERTY_CREATOR_TYPE = "creatorType";
@JsonProperty(JSON_PROPERTY_CREATOR_TYPE)
private EInvitationCreatorType creatorType;
public static final String JSON_PROPERTY_CREATOR_PERSON = "creatorPerson";
@JsonProperty(JSON_PROPERTY_CREATOR_PERSON)
private PersonData creatorPerson = null;
public static final String JSON_PROPERTY_EXPIRATION_TIMESTAMP = "expirationTimestamp";
@JsonProperty(JSON_PROPERTY_EXPIRATION_TIMESTAMP)
private Long expirationTimestamp;
public static final String JSON_PROPERTY_LINKS = "links";
@JsonProperty(JSON_PROPERTY_LINKS)
private List links = null;
public PinRenewedEvent $type(TypeEnum $type) {
this.$type = $type;
return this;
}
/**
* Get $type
*
* @return $type
**/
@ApiModelProperty(value = "")
public TypeEnum get$Type() {
return $type;
}
public void set$Type(TypeEnum $type) {
this.$type = $type;
}
public PinRenewedEvent timestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* The time (Unix time in ms) when the event was generated
*
* @return timestamp
**/
@ApiModelProperty(value = "The time (Unix time in ms) when the event was generated")
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public PinRenewedEvent eventType(String eventType) {
this.eventType = eventType;
return this;
}
/**
* The name of the event
*
* @return eventType
**/
@ApiModelProperty(value = "The name of the event")
public String getEventType() {
return eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public PinRenewedEvent accountId(String accountId) {
this.accountId = accountId;
return this;
}
/**
* The account ID the event originated from
*
* @return accountId
**/
@ApiModelProperty(value = "The account ID the event originated from")
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public PinRenewedEvent invitationId(String invitationId) {
this.invitationId = invitationId;
return this;
}
/**
* Id of the invitation
*
* @return invitationId
**/
@ApiModelProperty(value = "Id of the invitation")
public String getInvitationId() {
return invitationId;
}
public void setInvitationId(String invitationId) {
this.invitationId = invitationId;
}
public PinRenewedEvent conversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
/**
* Id of the conversation. Duplicate: Use conversation.id instead.
*
* @return conversationId
**/
@ApiModelProperty(value = "Id of the conversation. Duplicate: Use conversation.id instead.")
public String getConversationId() {
return conversationId;
}
public void setConversationId(String conversationId) {
this.conversationId = conversationId;
}
public PinRenewedEvent conversation(ConversationData conversation) {
this.conversation = conversation;
return this;
}
/**
* Get conversation
*
* @return conversation
**/
@ApiModelProperty(value = "")
public ConversationData getConversation() {
return conversation;
}
public void setConversation(ConversationData conversation) {
this.conversation = conversation;
}
public PinRenewedEvent token(String token) {
this.token = token;
return this;
}
/**
* Token (digits for pin or character sequence) requested to redeem or revoke the invitation
*
* @return token
**/
@ApiModelProperty(value = "Token (digits for pin or character sequence) requested to redeem or revoke the invitation")
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public PinRenewedEvent dateCreated(Long dateCreated) {
this.dateCreated = dateCreated;
return this;
}
/**
* Unix timestamp (ms) when the event was created
*
* @return dateCreated
**/
@ApiModelProperty(value = "Unix timestamp (ms) when the event was created")
public Long getDateCreated() {
return dateCreated;
}
public void setDateCreated(Long dateCreated) {
this.dateCreated = dateCreated;
}
public PinRenewedEvent creatorType(EInvitationCreatorType creatorType) {
this.creatorType = creatorType;
return this;
}
/**
* Get creatorType
*
* @return creatorType
**/
@ApiModelProperty(value = "")
public EInvitationCreatorType getCreatorType() {
return creatorType;
}
public void setCreatorType(EInvitationCreatorType creatorType) {
this.creatorType = creatorType;
}
public PinRenewedEvent creatorPerson(PersonData creatorPerson) {
this.creatorPerson = creatorPerson;
return this;
}
/**
* Get creatorPerson
*
* @return creatorPerson
**/
@ApiModelProperty(value = "")
public PersonData getCreatorPerson() {
return creatorPerson;
}
public void setCreatorPerson(PersonData creatorPerson) {
this.creatorPerson = creatorPerson;
}
public PinRenewedEvent expirationTimestamp(Long expirationTimestamp) {
this.expirationTimestamp = expirationTimestamp;
return this;
}
/**
* Unix timestamp (ms) after witch the invitation is no longer valid
*
* @return expirationTimestamp
**/
@ApiModelProperty(value = "Unix timestamp (ms) after witch the invitation is no longer valid")
public Long getExpirationTimestamp() {
return expirationTimestamp;
}
public void setExpirationTimestamp(Long expirationTimestamp) {
this.expirationTimestamp = expirationTimestamp;
}
public PinRenewedEvent links(List links) {
this.links = links;
return this;
}
public PinRenewedEvent addLinksItem(ConversationLink linksItem) {
if (this.links == null) {
this.links = new ArrayList<>();
}
this.links.add(linksItem);
return this;
}
/**
* List of links to accept the visitor invitation event with the token.<br> Only one link may be used.
*
* @return links
**/
@ApiModelProperty(value = "List of links to accept the visitor invitation event with the token.
Only one link may be used.")
public List getLinks() {
return links;
}
public void setLinks(List links) {
this.links = links;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PinRenewedEvent pinRenewedEvent = (PinRenewedEvent) o;
return Objects.equals(this.$type, pinRenewedEvent.$type) &&
Objects.equals(this.timestamp, pinRenewedEvent.timestamp) &&
Objects.equals(this.eventType, pinRenewedEvent.eventType) &&
Objects.equals(this.accountId, pinRenewedEvent.accountId) &&
Objects.equals(this.invitationId, pinRenewedEvent.invitationId) &&
Objects.equals(this.conversationId, pinRenewedEvent.conversationId) &&
Objects.equals(this.conversation, pinRenewedEvent.conversation) &&
Objects.equals(this.token, pinRenewedEvent.token) &&
Objects.equals(this.dateCreated, pinRenewedEvent.dateCreated) &&
Objects.equals(this.creatorType, pinRenewedEvent.creatorType) &&
Objects.equals(this.creatorPerson, pinRenewedEvent.creatorPerson) &&
Objects.equals(this.expirationTimestamp, pinRenewedEvent.expirationTimestamp) &&
Objects.equals(this.links, pinRenewedEvent.links);
}
@Override
public int hashCode() {
return Objects.hash($type, timestamp, eventType, accountId, invitationId, conversationId, conversation, token, dateCreated, creatorType, creatorPerson, expirationTimestamp, links);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PinRenewedEvent {\n");
sb.append(" $type: ").append(toIndentedString($type)).append("\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" eventType: ").append(toIndentedString(eventType)).append("\n");
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
sb.append(" invitationId: ").append(toIndentedString(invitationId)).append("\n");
sb.append(" conversationId: ").append(toIndentedString(conversationId)).append("\n");
sb.append(" conversation: ").append(toIndentedString(conversation)).append("\n");
sb.append(" token: ").append(toIndentedString(token)).append("\n");
sb.append(" dateCreated: ").append(toIndentedString(dateCreated)).append("\n");
sb.append(" creatorType: ").append(toIndentedString(creatorType)).append("\n");
sb.append(" creatorPerson: ").append(toIndentedString(creatorPerson)).append("\n");
sb.append(" expirationTimestamp: ").append(toIndentedString(expirationTimestamp)).append("\n");
sb.append(" links: ").append(toIndentedString(links)).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