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

com.docusign.esign.model.CommentPublish Maven / Gradle / Ivy

Go to download

The official Docusign eSignature JAVA client is based on version 2.1 of the Docusign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.

There is a newer version: 6.0.0
Show newest version
package com.docusign.esign.model;

import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

/**
 * CommentPublish
 */

public class CommentPublish {
  @JsonProperty("id")
  private String id = null;

  @JsonProperty("mentions")
  private java.util.List mentions = new java.util.ArrayList();

  @JsonProperty("text")
  private String text = null;

  @JsonProperty("threadAnchorKeys")
  private java.util.Map threadAnchorKeys = new java.util.HashMap();

  @JsonProperty("threadId")
  private String threadId = null;

  @JsonProperty("visibleTo")
  private java.util.List visibleTo = new java.util.ArrayList();

  public CommentPublish id(String id) {
    this.id = id;
    return this;
  }

   /**
   * 
   * @return id
  **/
  @ApiModelProperty(example = "null", value = "")
  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public CommentPublish mentions(java.util.List mentions) {
    this.mentions = mentions;
    return this;
  }

  public CommentPublish addMentionsItem(String mentionsItem) {
    this.mentions.add(mentionsItem);
    return this;
  }

   /**
   * 
   * @return mentions
  **/
  @ApiModelProperty(example = "null", value = "")
  public java.util.List getMentions() {
    return mentions;
  }

  public void setMentions(java.util.List mentions) {
    this.mentions = mentions;
  }

  public CommentPublish text(String text) {
    this.text = text;
    return this;
  }

   /**
   * 
   * @return text
  **/
  @ApiModelProperty(example = "null", value = "")
  public String getText() {
    return text;
  }

  public void setText(String text) {
    this.text = text;
  }

  public CommentPublish threadAnchorKeys(java.util.Map threadAnchorKeys) {
    this.threadAnchorKeys = threadAnchorKeys;
    return this;
  }

  public CommentPublish putThreadAnchorKeysItem(String key, String threadAnchorKeysItem) {
    this.threadAnchorKeys.put(key, threadAnchorKeysItem);
    return this;
  }

   /**
   * 
   * @return threadAnchorKeys
  **/
  @ApiModelProperty(example = "null", value = "")
  public java.util.Map getThreadAnchorKeys() {
    return threadAnchorKeys;
  }

  public void setThreadAnchorKeys(java.util.Map threadAnchorKeys) {
    this.threadAnchorKeys = threadAnchorKeys;
  }

  public CommentPublish threadId(String threadId) {
    this.threadId = threadId;
    return this;
  }

   /**
   * 
   * @return threadId
  **/
  @ApiModelProperty(example = "null", value = "")
  public String getThreadId() {
    return threadId;
  }

  public void setThreadId(String threadId) {
    this.threadId = threadId;
  }

  public CommentPublish visibleTo(java.util.List visibleTo) {
    this.visibleTo = visibleTo;
    return this;
  }

  public CommentPublish addVisibleToItem(String visibleToItem) {
    this.visibleTo.add(visibleToItem);
    return this;
  }

   /**
   * 
   * @return visibleTo
  **/
  @ApiModelProperty(example = "null", value = "")
  public java.util.List getVisibleTo() {
    return visibleTo;
  }

  public void setVisibleTo(java.util.List visibleTo) {
    this.visibleTo = visibleTo;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CommentPublish commentPublish = (CommentPublish) o;
    return Objects.equals(this.id, commentPublish.id) &&
        Objects.equals(this.mentions, commentPublish.mentions) &&
        Objects.equals(this.text, commentPublish.text) &&
        Objects.equals(this.threadAnchorKeys, commentPublish.threadAnchorKeys) &&
        Objects.equals(this.threadId, commentPublish.threadId) &&
        Objects.equals(this.visibleTo, commentPublish.visibleTo);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, mentions, text, threadAnchorKeys, threadId, visibleTo);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class CommentPublish {\n");
    
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    mentions: ").append(toIndentedString(mentions)).append("\n");
    sb.append("    text: ").append(toIndentedString(text)).append("\n");
    sb.append("    threadAnchorKeys: ").append(toIndentedString(threadAnchorKeys)).append("\n");
    sb.append("    threadId: ").append(toIndentedString(threadId)).append("\n");
    sb.append("    visibleTo: ").append(toIndentedString(visibleTo)).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