io.smooch.client.model.WebhookUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
io.smooch - api - 5.29.0
/*
* Smooch
* The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](https://docs.smooch.io).
*
* OpenAPI spec version: 5.8
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.smooch.client.model;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
/**
* WebhookUpdate
*/
public class WebhookUpdate {
@SerializedName("target")
private String target = null;
@SerializedName("triggers")
private List triggers = null;
public WebhookUpdate target(String target) {
this.target = target;
return this;
}
/**
* URL to be called when the webhook is triggered.
* @return target
**/
@ApiModelProperty(value = "URL to be called when the webhook is triggered.")
public String getTarget() {
return target;
}
public void setTarget(String target) {
this.target = target;
}
public WebhookUpdate triggers(List triggers) {
this.triggers = triggers;
return this;
}
public WebhookUpdate addTriggersItem(String triggersItem) {
if (this.triggers == null) {
this.triggers = new ArrayList();
}
this.triggers.add(triggersItem);
return this;
}
/**
* An array of triggers you wish to have the webhook listen to. See [**WebhookTriggersEnum**](Enums.md#WebhookTriggersEnum) for available values.
* @return triggers
**/
@ApiModelProperty(value = "An array of triggers you wish to have the webhook listen to. See [**WebhookTriggersEnum**](Enums.md#WebhookTriggersEnum) for available values.")
public List getTriggers() {
return triggers;
}
public void setTriggers(List triggers) {
this.triggers = triggers;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WebhookUpdate webhookUpdate = (WebhookUpdate) o;
return Objects.equals(this.target, webhookUpdate.target) &&
Objects.equals(this.triggers, webhookUpdate.triggers);
}
@Override
public int hashCode() {
return Objects.hash(target, triggers);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WebhookUpdate {\n");
sb.append(" target: ").append(toIndentedString(target)).append("\n");
sb.append(" triggers: ").append(toIndentedString(triggers)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy