com.vertexvis.model.UpdateWebhookSubscriptionRequestDataAttributes Maven / Gradle / Ivy
/*
* Vertex Platform API
* The Vertex distributed cloud rendering platform includes a set of APIs and SDKs, which together allow easily integrating 3D product data into your business application. See our [Developer Guides](https://developer.vertexvis.com/docs/guides/render-your-first-scene) to get started. Notes about the Postman collection and API Reference code samples, - They include all required and optional body parameters for completeness. Remove any optional parameters as desired. - They use auto-generated IDs and other values that may share the same value for ease of documentation only. In actual requests and responses, the IDs should uniquely identify their corresponding resource.
*
* The version of the OpenAPI document: 1.0
* 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.vertexvis.model;
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.util.ArrayList;
import java.util.List;
/**
* UpdateWebhookSubscriptionRequestDataAttributes
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class UpdateWebhookSubscriptionRequestDataAttributes {
/**
* Status of subscription.
*/
@JsonAdapter(StatusEnum.Adapter.class)
public enum StatusEnum {
ACTIVE("active"),
PAUSED("paused");
private String value;
StatusEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static StatusEnum fromValue(String value) {
for (StatusEnum b : StatusEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final StatusEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public StatusEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return StatusEnum.fromValue(value);
}
}
}
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private StatusEnum status;
public static final String SERIALIZED_NAME_TOPICS = "topics";
@SerializedName(SERIALIZED_NAME_TOPICS)
private List topics = null;
public static final String SERIALIZED_NAME_URL = "url";
@SerializedName(SERIALIZED_NAME_URL)
private String url;
public UpdateWebhookSubscriptionRequestDataAttributes status(StatusEnum status) {
this.status = status;
return this;
}
/**
* Status of subscription.
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "active", value = "Status of subscription.")
public StatusEnum getStatus() {
return status;
}
public void setStatus(StatusEnum status) {
this.status = status;
}
public UpdateWebhookSubscriptionRequestDataAttributes topics(List topics) {
this.topics = topics;
return this;
}
public UpdateWebhookSubscriptionRequestDataAttributes addTopicsItem(String topicsItem) {
if (this.topics == null) {
this.topics = new ArrayList<>();
}
this.topics.add(topicsItem);
return this;
}
/**
* Get topics
* @return topics
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public List getTopics() {
return topics;
}
public void setTopics(List topics) {
this.topics = topics;
}
public UpdateWebhookSubscriptionRequestDataAttributes url(String url) {
this.url = url;
return this;
}
/**
* Get url
* @return url
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "some-string", value = "")
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateWebhookSubscriptionRequestDataAttributes updateWebhookSubscriptionRequestDataAttributes = (UpdateWebhookSubscriptionRequestDataAttributes) o;
return Objects.equals(this.status, updateWebhookSubscriptionRequestDataAttributes.status) &&
Objects.equals(this.topics, updateWebhookSubscriptionRequestDataAttributes.topics) &&
Objects.equals(this.url, updateWebhookSubscriptionRequestDataAttributes.url);
}
@Override
public int hashCode() {
return Objects.hash(status, topics, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateWebhookSubscriptionRequestDataAttributes {\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" topics: ").append(toIndentedString(topics)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}