com.ziqni.admin.sdk.model.UpdateWebhookRequestAllOf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ziqni-admin-sdk Show documentation
Show all versions of ziqni-admin-sdk Show documentation
ZIQNI Admin SDK Java Client
/*
* ZIQNI Admin API
* Ziqni Application Services are used to manage and configure spaces.
*
* The version of the OpenAPI document: 3.0.11
* 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.ziqni.admin.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* UpdateWebhookRequestAllOf
*/
@JsonPropertyOrder({
UpdateWebhookRequestAllOf.JSON_PROPERTY_POST_TO_URL,
UpdateWebhookRequestAllOf.JSON_PROPERTY_TRIGGERS,
UpdateWebhookRequestAllOf.JSON_PROPERTY_DESCRIPTION,
UpdateWebhookRequestAllOf.JSON_PROPERTY_NAME,
UpdateWebhookRequestAllOf.JSON_PROPERTY_HEADERS
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class UpdateWebhookRequestAllOf {
public static final String JSON_PROPERTY_POST_TO_URL = "postToUrl";
private String postToUrl;
public static final String JSON_PROPERTY_TRIGGERS = "triggers";
private List triggers = null;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_HEADERS = "headers";
private Map headers = null;
public UpdateWebhookRequestAllOf postToUrl(String postToUrl) {
this.postToUrl = postToUrl;
return this;
}
/**
* A URL to post the webhook to
* @return postToUrl
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "http://www.my-domain.com/abcd", value = "A URL to post the webhook to")
@JsonProperty(JSON_PROPERTY_POST_TO_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPostToUrl() {
return postToUrl;
}
@JsonProperty(JSON_PROPERTY_POST_TO_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPostToUrl(String postToUrl) {
this.postToUrl = postToUrl;
}
public UpdateWebhookRequestAllOf triggers(List triggers) {
this.triggers = triggers;
return this;
}
public UpdateWebhookRequestAllOf addTriggersItem(String triggersItem) {
if (this.triggers == null) {
this.triggers = new ArrayList<>();
}
this.triggers.add(triggersItem);
return this;
}
/**
* A list of event triggers
* @return triggers
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "- com.ziqni.transformers.domain.CLWebhookTriggers.TriggersByClassName.getOrElse - onNewProductTrigger.getClass.getSimpleName.replace", value = "A list of event triggers")
@JsonProperty(JSON_PROPERTY_TRIGGERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTriggers() {
return triggers;
}
@JsonProperty(JSON_PROPERTY_TRIGGERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTriggers(List triggers) {
this.triggers = triggers;
}
public UpdateWebhookRequestAllOf description(String description) {
this.description = description;
return this;
}
/**
* The description of a Webhook
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "http://www.my-domain.com/abcd", value = "The description of a Webhook")
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public UpdateWebhookRequestAllOf name(String name) {
this.name = name;
return this;
}
/**
* The name of a Webhook
* @return name
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "test", value = "The name of a Webhook")
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(String name) {
this.name = name;
}
public UpdateWebhookRequestAllOf headers(Map headers) {
this.headers = headers;
return this;
}
public UpdateWebhookRequestAllOf putHeadersItem(String key, String headersItem) {
if (this.headers == null) {
this.headers = new HashMap<>();
}
this.headers.put(key, headersItem);
return this;
}
/**
* Get headers
* @return headers
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_HEADERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getHeaders() {
return headers;
}
@JsonProperty(JSON_PROPERTY_HEADERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setHeaders(Map headers) {
this.headers = headers;
}
/**
* Return true if this UpdateWebhookRequest_allOf object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateWebhookRequestAllOf updateWebhookRequestAllOf = (UpdateWebhookRequestAllOf) o;
return Objects.equals(this.postToUrl, updateWebhookRequestAllOf.postToUrl) &&
Objects.equals(this.triggers, updateWebhookRequestAllOf.triggers) &&
Objects.equals(this.description, updateWebhookRequestAllOf.description) &&
Objects.equals(this.name, updateWebhookRequestAllOf.name) &&
Objects.equals(this.headers, updateWebhookRequestAllOf.headers);
}
@Override
public int hashCode() {
return Objects.hash(postToUrl, triggers, description, name, headers);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateWebhookRequestAllOf {\n");
sb.append(" postToUrl: ").append(toIndentedString(postToUrl)).append("\n");
sb.append(" triggers: ").append(toIndentedString(triggers)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" headers: ").append(toIndentedString(headers)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy