All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sinch.sdk.domains.voice.models.dto.v1.SvamlInstructionSetCookieDto Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 * Voice API | Sinch
 * The Voice API exposes calling- and conference-related functionality in the Sinch Voice Platform.
 *
 * The version of the OpenAPI document: 1.0.1
 * 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.sinch.sdk.domains.voice.models.dto.v1;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonFilter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Objects;

/** Creates a cookie for the duration of the call. */
@JsonPropertyOrder({
  SvamlInstructionSetCookieDto.JSON_PROPERTY_NAME,
  SvamlInstructionSetCookieDto.JSON_PROPERTY_KEY,
  SvamlInstructionSetCookieDto.JSON_PROPERTY_VALUE
})
@JsonFilter("uninitializedFilter")
@JsonInclude(value = JsonInclude.Include.CUSTOM)
public class SvamlInstructionSetCookieDto {
  private static final long serialVersionUID = 1L;

  /** The `name` property. Must have the value `setCookie`. */
  public enum NameEnum {
    SETCOOKIE("setCookie"),

    UNKNOWN_DEFAULT_OPEN_API("unknown_default_open_api");

    private String value;

    NameEnum(String value) {
      this.value = value;
    }

    @JsonValue
    public String getValue() {
      return value;
    }

    @Override
    public String toString() {
      return String.valueOf(value);
    }

    @JsonCreator
    public static NameEnum fromValue(String value) {
      for (NameEnum b : NameEnum.values()) {
        if (b.value.equals(value)) {
          return b;
        }
      }
      return UNKNOWN_DEFAULT_OPEN_API;
    }
  }

  public static final String JSON_PROPERTY_NAME = "name";
  private String name;
  private boolean nameDefined = false;

  public static final String JSON_PROPERTY_KEY = "key";
  private String key;
  private boolean keyDefined = false;

  public static final String JSON_PROPERTY_VALUE = "value";
  private String value;
  private boolean valueDefined = false;

  public SvamlInstructionSetCookieDto() {}

  public SvamlInstructionSetCookieDto name(String name) {
    this.name = name;
    this.nameDefined = true;
    return this;
  }

  /**
   * The `name` property. Must have the value `setCookie`.
   *
   * @return name
   */
  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getName() {
    return name;
  }

  @JsonIgnore
  public boolean getNameDefined() {
    return nameDefined;
  }

  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setName(String name) {
    this.name = name;
    this.nameDefined = true;
  }

  public SvamlInstructionSetCookieDto key(String key) {
    this.key = key;
    this.keyDefined = true;
    return this;
  }

  /**
   * The name of the cookie you want to set.
   *
   * @return key
   */
  @JsonProperty(JSON_PROPERTY_KEY)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getKey() {
    return key;
  }

  @JsonIgnore
  public boolean getKeyDefined() {
    return keyDefined;
  }

  @JsonProperty(JSON_PROPERTY_KEY)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setKey(String key) {
    this.key = key;
    this.keyDefined = true;
  }

  public SvamlInstructionSetCookieDto value(String value) {
    this.value = value;
    this.valueDefined = true;
    return this;
  }

  /**
   * The value of the cookie you want to set.
   *
   * @return value
   */
  @JsonProperty(JSON_PROPERTY_VALUE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getValue() {
    return value;
  }

  @JsonIgnore
  public boolean getValueDefined() {
    return valueDefined;
  }

  @JsonProperty(JSON_PROPERTY_VALUE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setValue(String value) {
    this.value = value;
    this.valueDefined = true;
  }

  /** Return true if this svaml.instruction.setCookie object is equal to o. */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SvamlInstructionSetCookieDto svamlInstructionSetCookie = (SvamlInstructionSetCookieDto) o;
    return Objects.equals(this.name, svamlInstructionSetCookie.name)
        && Objects.equals(this.key, svamlInstructionSetCookie.key)
        && Objects.equals(this.value, svamlInstructionSetCookie.value);
  }

  @Override
  public int hashCode() {
    return Objects.hash(name, key, value);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class SvamlInstructionSetCookieDto {\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    key: ").append(toIndentedString(key)).append("\n");
    sb.append("    value: ").append(toIndentedString(value)).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 - 2024 Weber Informatics LLC | Privacy Policy