com.docusign.esign.model.DelayedRouting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docusign-esign-java Show documentation
Show all versions of docusign-esign-java Show documentation
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.
package com.docusign.esign.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Objects;
/** DelayedRouting. */
public class DelayedRouting {
@JsonProperty("resumeDate")
private String resumeDate = null;
@JsonProperty("rules")
private java.util.List rules = null;
@JsonProperty("status")
private String status = null;
/**
* resumeDate.
*
* @return DelayedRouting
*/
public DelayedRouting resumeDate(String resumeDate) {
this.resumeDate = resumeDate;
return this;
}
/**
* An ISO 8601 formatted datetime string indicating the date and time that the envelope is (or
* was) scheduled to be sent to the recipients associated with the current workflow step or null
* if the envelope has not yet begun processing the current workflow step..
*
* @return resumeDate
*/
@Schema(
description =
"An ISO 8601 formatted datetime string indicating the date and time that the envelope is (or was) scheduled to be sent to the recipients associated with the current workflow step or null if the envelope has not yet begun processing the current workflow step.")
public String getResumeDate() {
return resumeDate;
}
/** setResumeDate. */
public void setResumeDate(String resumeDate) {
this.resumeDate = resumeDate;
}
/**
* rules.
*
* @return DelayedRouting
*/
public DelayedRouting rules(java.util.List rules) {
this.rules = rules;
return this;
}
/**
* addRulesItem.
*
* @return DelayedRouting
*/
public DelayedRouting addRulesItem(EnvelopeDelayRule rulesItem) {
if (this.rules == null) {
this.rules = new java.util.ArrayList<>();
}
this.rules.add(rulesItem);
return this;
}
/**
* A list of envelope delay rules specified by the user indicating how and when the envelope
* should be sent in the future for the current workflow step and its associated recipients.
* Currently only 1 rule may be specified..
*
* @return rules
*/
@Schema(
description =
"A list of envelope delay rules specified by the user indicating how and when the envelope should be sent in the future for the current workflow step and its associated recipients. Currently only 1 rule may be specified.")
public java.util.List getRules() {
return rules;
}
/** setRules. */
public void setRules(java.util.List rules) {
this.rules = rules;
}
/**
* status.
*
* @return DelayedRouting
*/
public DelayedRouting status(String status) {
this.status = status;
return this;
}
/**
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the
* recipients. * created - The envelope is saved as a draft and can be modified and sent later..
*
* @return status
*/
@Schema(
description =
"Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.")
public String getStatus() {
return status;
}
/** setStatus. */
public void setStatus(String status) {
this.status = status;
}
/**
* Compares objects.
*
* @return true or false depending on comparison result.
*/
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DelayedRouting delayedRouting = (DelayedRouting) o;
return Objects.equals(this.resumeDate, delayedRouting.resumeDate)
&& Objects.equals(this.rules, delayedRouting.rules)
&& Objects.equals(this.status, delayedRouting.status);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(resumeDate, rules, status);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DelayedRouting {\n");
sb.append(" resumeDate: ").append(toIndentedString(resumeDate)).append("\n");
sb.append(" rules: ").append(toIndentedString(rules)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).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 ");
}
}