com.unblu.webapi.model.v3.AssignmentRequestRevokedEvent 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.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;
/**
* Assignment request revoked event
*/
@ApiModel(description = "Assignment request revoked event")
@JsonPropertyOrder({
AssignmentRequestRevokedEvent.JSON_PROPERTY_$_TYPE,
AssignmentRequestRevokedEvent.JSON_PROPERTY_TIMESTAMP,
AssignmentRequestRevokedEvent.JSON_PROPERTY_EVENT_TYPE,
AssignmentRequestRevokedEvent.JSON_PROPERTY_ACCOUNT_ID,
AssignmentRequestRevokedEvent.JSON_PROPERTY_INVITATION_ID,
AssignmentRequestRevokedEvent.JSON_PROPERTY_CONVERSATION_ID,
AssignmentRequestRevokedEvent.JSON_PROPERTY_CONVERSATION,
AssignmentRequestRevokedEvent.JSON_PROPERTY_TOKEN,
AssignmentRequestRevokedEvent.JSON_PROPERTY_DATE_CREATED,
AssignmentRequestRevokedEvent.JSON_PROPERTY_CREATOR_TYPE,
AssignmentRequestRevokedEvent.JSON_PROPERTY_CREATOR_PERSON,
AssignmentRequestRevokedEvent.JSON_PROPERTY_CONTEXT_PERSON_INFO,
AssignmentRequestRevokedEvent.JSON_PROPERTY_TARGET,
})
@JsonAutoDetect(creatorVisibility = Visibility.NONE, fieldVisibility = Visibility.NONE, getterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
public class AssignmentRequestRevokedEvent {
/**
* Gets or Sets $type
*/
public enum TypeEnum {
ASSIGNMENTREQUESTREVOKEDEVENT("AssignmentRequestRevokedEvent");
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.ASSIGNMENTREQUESTREVOKEDEVENT;
}
}
public static final String JSON_PROPERTY_$_TYPE = "$_type";
@JsonProperty(JSON_PROPERTY_$_TYPE)
private TypeEnum $type = TypeEnum.ASSIGNMENTREQUESTREVOKEDEVENT;
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_CONTEXT_PERSON_INFO = "contextPersonInfo";
@JsonProperty(JSON_PROPERTY_CONTEXT_PERSON_INFO)
private ContextPersonInfo contextPersonInfo = null;
public static final String JSON_PROPERTY_TARGET = "target";
@JsonProperty(JSON_PROPERTY_TARGET)
private ConversationRecipientData target = null;
public AssignmentRequestRevokedEvent $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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent 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 AssignmentRequestRevokedEvent contextPersonInfo(ContextPersonInfo contextPersonInfo) {
this.contextPersonInfo = contextPersonInfo;
return this;
}
/**
* Get contextPersonInfo
*
* @return contextPersonInfo
**/
@ApiModelProperty(value = "")
public ContextPersonInfo getContextPersonInfo() {
return contextPersonInfo;
}
public void setContextPersonInfo(ContextPersonInfo contextPersonInfo) {
this.contextPersonInfo = contextPersonInfo;
}
public AssignmentRequestRevokedEvent target(ConversationRecipientData target) {
this.target = target;
return this;
}
/**
* Get target
*
* @return target
**/
@ApiModelProperty(value = "")
public ConversationRecipientData getTarget() {
return target;
}
public void setTarget(ConversationRecipientData target) {
this.target = target;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssignmentRequestRevokedEvent assignmentRequestRevokedEvent = (AssignmentRequestRevokedEvent) o;
return Objects.equals(this.$type, assignmentRequestRevokedEvent.$type) &&
Objects.equals(this.timestamp, assignmentRequestRevokedEvent.timestamp) &&
Objects.equals(this.eventType, assignmentRequestRevokedEvent.eventType) &&
Objects.equals(this.accountId, assignmentRequestRevokedEvent.accountId) &&
Objects.equals(this.invitationId, assignmentRequestRevokedEvent.invitationId) &&
Objects.equals(this.conversationId, assignmentRequestRevokedEvent.conversationId) &&
Objects.equals(this.conversation, assignmentRequestRevokedEvent.conversation) &&
Objects.equals(this.token, assignmentRequestRevokedEvent.token) &&
Objects.equals(this.dateCreated, assignmentRequestRevokedEvent.dateCreated) &&
Objects.equals(this.creatorType, assignmentRequestRevokedEvent.creatorType) &&
Objects.equals(this.creatorPerson, assignmentRequestRevokedEvent.creatorPerson) &&
Objects.equals(this.contextPersonInfo, assignmentRequestRevokedEvent.contextPersonInfo) &&
Objects.equals(this.target, assignmentRequestRevokedEvent.target);
}
@Override
public int hashCode() {
return Objects.hash($type, timestamp, eventType, accountId, invitationId, conversationId, conversation, token, dateCreated, creatorType, creatorPerson, contextPersonInfo, target);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssignmentRequestRevokedEvent {\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(" contextPersonInfo: ").append(toIndentedString(contextPersonInfo)).append("\n");
sb.append(" target: ").append(toIndentedString(target)).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 ");
}
}