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

com.sinch.sdk.domains.voice.models.dto.v1.GetCalloutResponseObjDto 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.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 java.util.Objects;

/** The returned call ID. */
@JsonPropertyOrder({GetCalloutResponseObjDto.JSON_PROPERTY_CALL_ID})
@JsonFilter("uninitializedFilter")
@JsonInclude(value = JsonInclude.Include.CUSTOM)
public class GetCalloutResponseObjDto {
  private static final long serialVersionUID = 1L;
  public static final String JSON_PROPERTY_CALL_ID = "callId";
  private String callId;
  private boolean callIdDefined = false;

  public GetCalloutResponseObjDto() {}

  public GetCalloutResponseObjDto callId(String callId) {
    this.callId = callId;
    this.callIdDefined = true;
    return this;
  }

  /**
   * The returned call identifier.
   *
   * @return callId
   */
  @JsonProperty(JSON_PROPERTY_CALL_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getCallId() {
    return callId;
  }

  @JsonIgnore
  public boolean getCallIdDefined() {
    return callIdDefined;
  }

  @JsonProperty(JSON_PROPERTY_CALL_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setCallId(String callId) {
    this.callId = callId;
    this.callIdDefined = true;
  }

  /** Return true if this getCalloutResponseObj object is equal to o. */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    GetCalloutResponseObjDto getCalloutResponseObj = (GetCalloutResponseObjDto) o;
    return Objects.equals(this.callId, getCalloutResponseObj.callId);
  }

  @Override
  public int hashCode() {
    return Objects.hash(callId);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class GetCalloutResponseObjDto {\n");
    sb.append("    callId: ").append(toIndentedString(callId)).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