com.zendesk.sunshine_conversations_client.model.UserUpdateEvent Maven / Gradle / Ivy
/*
* Sunshine Conversations API
*
* The version of the OpenAPI document: 12.8.0
*
*
* 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.zendesk.sunshine_conversations_client.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.zendesk.sunshine_conversations_client.model.EventSubSchema;
import com.zendesk.sunshine_conversations_client.model.UserUpdateEventAllOf;
import com.zendesk.sunshine_conversations_client.model.UserUpdateEventAllOfPayload;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* UserUpdateEvent
*/
@JsonPropertyOrder({
UserUpdateEvent.JSON_PROPERTY_ID,
UserUpdateEvent.JSON_PROPERTY_TYPE,
UserUpdateEvent.JSON_PROPERTY_CREATED_AT,
UserUpdateEvent.JSON_PROPERTY_PAYLOAD
})
public class UserUpdateEvent {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
public static final String JSON_PROPERTY_CREATED_AT = "createdAt";
private String createdAt;
public static final String JSON_PROPERTY_PAYLOAD = "payload";
private UserUpdateEventAllOfPayload payload;
public UserUpdateEvent id(String id) {
this.id = id;
return this;
}
/**
* The unique ID of the event. May be used to ensure that an event is not processed twice in the case of a webhook that is re-tried due to an error or timeout.
* @return id
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "The unique ID of the event. May be used to ensure that an event is not processed twice in the case of a webhook that is re-tried due to an error or timeout.")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public UserUpdateEvent type(String type) {
this.type = type;
return this;
}
/**
* The type of the event. Will match one of the subscribed triggers for your [webhook](#operation/createWebhook).
* @return type
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "The type of the event. Will match one of the subscribed triggers for your [webhook](#operation/createWebhook).")
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public UserUpdateEvent createdAt(String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* A timestamp signifying when the event was generated. Formatted as `YYYY-MM-DDThh:mm:ss.SSSZ`.
* @return createdAt
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "A timestamp signifying when the event was generated. Formatted as `YYYY-MM-DDThh:mm:ss.SSSZ`.")
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public UserUpdateEvent payload(UserUpdateEventAllOfPayload payload) {
this.payload = payload;
return this;
}
/**
* Get payload
* @return payload
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PAYLOAD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public UserUpdateEventAllOfPayload getPayload() {
return payload;
}
public void setPayload(UserUpdateEventAllOfPayload payload) {
this.payload = payload;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserUpdateEvent userUpdateEvent = (UserUpdateEvent) o;
return Objects.equals(this.id, userUpdateEvent.id) &&
Objects.equals(this.type, userUpdateEvent.type) &&
Objects.equals(this.createdAt, userUpdateEvent.createdAt) &&
Objects.equals(this.payload, userUpdateEvent.payload);
}
@Override
public int hashCode() {
return Objects.hash(id, type, createdAt, payload);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserUpdateEvent {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" payload: ").append(toIndentedString(payload)).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 ");
}
}