com.unblu.webapi.model.v3.WebhookCallLogResult 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
The newest version!
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;
/**
* Container to return list of webhook calllogs
*/
@ApiModel(description = "Container to return list of webhook calllogs")
@JsonPropertyOrder({
WebhookCallLogResult.JSON_PROPERTY_$_TYPE,
WebhookCallLogResult.JSON_PROPERTY_HAS_MORE_ITEMS,
WebhookCallLogResult.JSON_PROPERTY_NEXT_OFFSET,
WebhookCallLogResult.JSON_PROPERTY_ITEMS,
})
@JsonAutoDetect(creatorVisibility = Visibility.NONE, fieldVisibility = Visibility.NONE, getterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
public class WebhookCallLogResult {
/**
* Gets or Sets $type
*/
public enum TypeEnum {
WEBHOOKCALLLOGRESULT("WebhookCallLogResult");
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.WEBHOOKCALLLOGRESULT;
}
}
public static final String JSON_PROPERTY_$_TYPE = "$_type";
@JsonProperty(JSON_PROPERTY_$_TYPE)
private TypeEnum $type = TypeEnum.WEBHOOKCALLLOGRESULT;
public static final String JSON_PROPERTY_HAS_MORE_ITEMS = "hasMoreItems";
@JsonProperty(JSON_PROPERTY_HAS_MORE_ITEMS)
private Boolean hasMoreItems;
public static final String JSON_PROPERTY_NEXT_OFFSET = "nextOffset";
@JsonProperty(JSON_PROPERTY_NEXT_OFFSET)
private Integer nextOffset;
public static final String JSON_PROPERTY_ITEMS = "items";
@JsonProperty(JSON_PROPERTY_ITEMS)
private List items = null;
public WebhookCallLogResult $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 WebhookCallLogResult hasMoreItems(Boolean hasMoreItems) {
this.hasMoreItems = hasMoreItems;
return this;
}
/**
* Flag to indicate if there are more items on the server
*
* @return hasMoreItems
**/
@ApiModelProperty(value = "Flag to indicate if there are more items on the server")
public Boolean isHasMoreItems() {
return hasMoreItems;
}
public void setHasMoreItems(Boolean hasMoreItems) {
this.hasMoreItems = hasMoreItems;
}
public WebhookCallLogResult nextOffset(Integer nextOffset) {
this.nextOffset = nextOffset;
return this;
}
/**
* If more items are present on the server, this value can be used as offset in the next query
*
* @return nextOffset
**/
@ApiModelProperty(value = "If more items are present on the server, this value can be used as offset in the next query")
public Integer getNextOffset() {
return nextOffset;
}
public void setNextOffset(Integer nextOffset) {
this.nextOffset = nextOffset;
}
public WebhookCallLogResult items(List items) {
this.items = items;
return this;
}
public WebhookCallLogResult addItemsItem(WebhookCallLog itemsItem) {
if (this.items == null) {
this.items = new ArrayList<>();
}
this.items.add(itemsItem);
return this;
}
/**
* The returned list of entities
*
* @return items
**/
@ApiModelProperty(value = "The returned list of entities")
public List getItems() {
return items;
}
public void setItems(List items) {
this.items = items;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WebhookCallLogResult webhookCallLogResult = (WebhookCallLogResult) o;
return Objects.equals(this.$type, webhookCallLogResult.$type) &&
Objects.equals(this.hasMoreItems, webhookCallLogResult.hasMoreItems) &&
Objects.equals(this.nextOffset, webhookCallLogResult.nextOffset) &&
Objects.equals(this.items, webhookCallLogResult.items);
}
@Override
public int hashCode() {
return Objects.hash($type, hasMoreItems, nextOffset, items);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WebhookCallLogResult {\n");
sb.append(" $type: ").append(toIndentedString($type)).append("\n");
sb.append(" hasMoreItems: ").append(toIndentedString(hasMoreItems)).append("\n");
sb.append(" nextOffset: ").append(toIndentedString(nextOffset)).append("\n");
sb.append(" items: ").append(toIndentedString(items)).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 ");
}
}