com.zendesk.sunshine_conversations_client.model.PassControlBody 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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* PassControlBody
*/
@JsonPropertyOrder({
PassControlBody.JSON_PROPERTY_SWITCHBOARD_INTEGRATION,
PassControlBody.JSON_PROPERTY_METADATA
})
public class PassControlBody {
public static final String JSON_PROPERTY_SWITCHBOARD_INTEGRATION = "switchboardIntegration";
private String switchboardIntegration;
public static final String JSON_PROPERTY_METADATA = "metadata";
private Object metadata = null;
public PassControlBody switchboardIntegration(String switchboardIntegration) {
this.switchboardIntegration = switchboardIntegration;
return this;
}
/**
* The id or the name of the switchboard integration that will become active. May also use the `next` keyword to transfer control to the next switchboard integration designated in the switchboard hierarchy configuration
* @return switchboardIntegration
**/
@ApiModelProperty(example = "next", required = true, value = "The id or the name of the switchboard integration that will become active. May also use the `next` keyword to transfer control to the next switchboard integration designated in the switchboard hierarchy configuration")
@JsonProperty(JSON_PROPERTY_SWITCHBOARD_INTEGRATION)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getSwitchboardIntegration() {
return switchboardIntegration;
}
public void setSwitchboardIntegration(String switchboardIntegration) {
this.switchboardIntegration = switchboardIntegration;
}
public PassControlBody metadata(Object metadata) {
this.metadata = metadata;
return this;
}
/**
* Flat object containing custom properties. Strings, numbers and booleans are the only supported format that can be passed to metadata. The metadata is limited to 4KB in size. The metadata object will be included in the `switchboard:passControl` webhook.
* @return metadata
**/
@jakarta.annotation.Nullable
@ApiModelProperty(value = "Flat object containing custom properties. Strings, numbers and booleans are the only supported format that can be passed to metadata. The metadata is limited to 4KB in size. The metadata object will be included in the `switchboard:passControl` webhook.")
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Object getMetadata() {
return metadata;
}
public void setMetadata(Object metadata) {
this.metadata = metadata;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PassControlBody passControlBody = (PassControlBody) o;
return Objects.equals(this.switchboardIntegration, passControlBody.switchboardIntegration) &&
Objects.equals(this.metadata, passControlBody.metadata);
}
@Override
public int hashCode() {
return Objects.hash(switchboardIntegration, metadata);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PassControlBody {\n");
sb.append(" switchboardIntegration: ").append(toIndentedString(switchboardIntegration)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).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 ");
}
}