com.docusign.esign.model.TemplateRole 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 java.util.Objects;
import java.util.Arrays;
import com.docusign.esign.model.RecipientEmailNotification;
import com.docusign.esign.model.RecipientSignatureProvider;
import com.docusign.esign.model.Tabs;
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;
/**
* TemplateRole
*/
public class TemplateRole {
@JsonProperty("accessCode")
private String accessCode = null;
@JsonProperty("clientUserId")
private String clientUserId = null;
@JsonProperty("defaultRecipient")
private String defaultRecipient = null;
@JsonProperty("email")
private String email = null;
@JsonProperty("emailNotification")
private RecipientEmailNotification emailNotification = null;
@JsonProperty("embeddedRecipientStartURL")
private String embeddedRecipientStartURL = null;
@JsonProperty("inPersonSignerName")
private String inPersonSignerName = null;
@JsonProperty("name")
private String name = null;
@JsonProperty("recipientSignatureProviders")
private java.util.List recipientSignatureProviders = null;
@JsonProperty("roleName")
private String roleName = null;
@JsonProperty("routingOrder")
private String routingOrder = null;
@JsonProperty("signingGroupId")
private String signingGroupId = null;
@JsonProperty("tabs")
private Tabs tabs = null;
public TemplateRole accessCode(String accessCode) {
this.accessCode = accessCode;
return this;
}
/**
* If a value is provided, the recipient must enter the value as the access code to view and sign the envelope. Maximum Length: 50 characters and it must conform to the account's access code format setting. If blank, but the signer `accessCode` property is set in the envelope, then that value is used. If blank and the signer `accessCode` property is not set, then the access code is not required.
* @return accessCode
**/
@ApiModelProperty(value = "If a value is provided, the recipient must enter the value as the access code to view and sign the envelope. Maximum Length: 50 characters and it must conform to the account's access code format setting. If blank, but the signer `accessCode` property is set in the envelope, then that value is used. If blank and the signer `accessCode` property is not set, then the access code is not required.")
public String getAccessCode() {
return accessCode;
}
public void setAccessCode(String accessCode) {
this.accessCode = accessCode;
}
public TemplateRole clientUserId(String clientUserId) {
this.clientUserId = clientUserId;
return this;
}
/**
* Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters.
* @return clientUserId
**/
@ApiModelProperty(value = "Specifies whether the recipient is embedded or remote. If the `clientUserId` property is not null then the recipient is embedded. Note that if the `ClientUserId` property is set and either `SignerMustHaveAccount` or `SignerMustLoginToSign` property of the account settings is set to **true**, an error is generated on sending.ng. Maximum length: 100 characters. ")
public String getClientUserId() {
return clientUserId;
}
public void setClientUserId(String clientUserId) {
this.clientUserId = clientUserId;
}
public TemplateRole defaultRecipient(String defaultRecipient) {
this.defaultRecipient = defaultRecipient;
return this;
}
/**
* When set to **true**, this recipient is the default recipient and any tabs generated by the transformPdfFields option are mapped to this recipient.
* @return defaultRecipient
**/
@ApiModelProperty(value = "When set to **true**, this recipient is the default recipient and any tabs generated by the transformPdfFields option are mapped to this recipient.")
public String getDefaultRecipient() {
return defaultRecipient;
}
public void setDefaultRecipient(String defaultRecipient) {
this.defaultRecipient = defaultRecipient;
}
public TemplateRole email(String email) {
this.email = email;
return this;
}
/**
* Specifies the email associated with a role name.
* @return email
**/
@ApiModelProperty(value = "Specifies the email associated with a role name.")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public TemplateRole emailNotification(RecipientEmailNotification emailNotification) {
this.emailNotification = emailNotification;
return this;
}
/**
* Get emailNotification
* @return emailNotification
**/
@ApiModelProperty(value = "")
public RecipientEmailNotification getEmailNotification() {
return emailNotification;
}
public void setEmailNotification(RecipientEmailNotification emailNotification) {
this.emailNotification = emailNotification;
}
public TemplateRole embeddedRecipientStartURL(String embeddedRecipientStartURL) {
this.embeddedRecipientStartURL = embeddedRecipientStartURL;
return this;
}
/**
* Specifies a sender provided valid URL string for redirecting an embedded recipient. When using this option, the embedded recipient still receives an email from DocuSign, just as a remote recipient would. When the document link in the email is clicked the recipient is redirected, through DocuSign, to the supplied URL to complete their actions. When routing to the URL, the sender's system (the server responding to the URL) must request a recipient token to launch a signing session. If set to `SIGN_AT_DOCUSIGN`, the recipient is directed to an embedded signing or viewing process directly at DocuSign. The signing or viewing action is initiated by the DocuSign system and the transaction activity and Certificate of Completion records will reflect this. In all other ways the process is identical to an embedded signing or viewing operation that is launched by any partner. It is important to remember that in a typical embedded workflow the authentication of an embedded recipient is the responsibility of the sending application, DocuSign expects that senders will follow their own process for establishing the recipient's identity. In this workflow the recipient goes through the sending application before the embedded signing or viewing process in initiated. However, when the sending application sets `EmbeddedRecipientStartURL=SIGN_AT_DOCUSIGN`, the recipient goes directly to the embedded signing or viewing process bypassing the sending application and any authentication steps the sending application would use. In this case, DocuSign recommends that you use one of the normal DocuSign authentication features (Access Code, Phone Authentication, SMS Authentication, etc.) to verify the identity of the recipient. If the `clientUserId` property is NOT set, and the `embeddedRecipientStartURL` is set, DocuSign will ignore the redirect URL and launch the standard signing process for the email recipient. Information can be appended to the embedded recipient start URL using merge fields. The available merge fields items are: envelopeId, recipientId, recipientName, recipientEmail, and customFields. The `customFields` property must be set fort the recipient or envelope. The merge fields are enclosed in double brackets. *Example*: `http://senderHost/[[mergeField1]]/ beginSigningSession? [[mergeField2]]&[[mergeField3]]`
* @return embeddedRecipientStartURL
**/
@ApiModelProperty(value = "Specifies a sender provided valid URL string for redirecting an embedded recipient. When using this option, the embedded recipient still receives an email from DocuSign, just as a remote recipient would. When the document link in the email is clicked the recipient is redirected, through DocuSign, to the supplied URL to complete their actions. When routing to the URL, the sender's system (the server responding to the URL) must request a recipient token to launch a signing session. If set to `SIGN_AT_DOCUSIGN`, the recipient is directed to an embedded signing or viewing process directly at DocuSign. The signing or viewing action is initiated by the DocuSign system and the transaction activity and Certificate of Completion records will reflect this. In all other ways the process is identical to an embedded signing or viewing operation that is launched by any partner. It is important to remember that in a typical embedded workflow the authentication of an embedded recipient is the responsibility of the sending application, DocuSign expects that senders will follow their own process for establishing the recipient's identity. In this workflow the recipient goes through the sending application before the embedded signing or viewing process in initiated. However, when the sending application sets `EmbeddedRecipientStartURL=SIGN_AT_DOCUSIGN`, the recipient goes directly to the embedded signing or viewing process bypassing the sending application and any authentication steps the sending application would use. In this case, DocuSign recommends that you use one of the normal DocuSign authentication features (Access Code, Phone Authentication, SMS Authentication, etc.) to verify the identity of the recipient. If the `clientUserId` property is NOT set, and the `embeddedRecipientStartURL` is set, DocuSign will ignore the redirect URL and launch the standard signing process for the email recipient. Information can be appended to the embedded recipient start URL using merge fields. The available merge fields items are: envelopeId, recipientId, recipientName, recipientEmail, and customFields. The `customFields` property must be set fort the recipient or envelope. The merge fields are enclosed in double brackets. *Example*: `http://senderHost/[[mergeField1]]/ beginSigningSession? [[mergeField2]]&[[mergeField3]]` ")
public String getEmbeddedRecipientStartURL() {
return embeddedRecipientStartURL;
}
public void setEmbeddedRecipientStartURL(String embeddedRecipientStartURL) {
this.embeddedRecipientStartURL = embeddedRecipientStartURL;
}
public TemplateRole inPersonSignerName(String inPersonSignerName) {
this.inPersonSignerName = inPersonSignerName;
return this;
}
/**
* Specifies the full legal name of the signer in person signer template roles. Maximum Length: 100 characters.
* @return inPersonSignerName
**/
@ApiModelProperty(value = "Specifies the full legal name of the signer in person signer template roles. Maximum Length: 100 characters.")
public String getInPersonSignerName() {
return inPersonSignerName;
}
public void setInPersonSignerName(String inPersonSignerName) {
this.inPersonSignerName = inPersonSignerName;
}
public TemplateRole name(String name) {
this.name = name;
return this;
}
/**
* Specifies the recipient's name.
* @return name
**/
@ApiModelProperty(value = "Specifies the recipient's name.")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public TemplateRole recipientSignatureProviders(java.util.List recipientSignatureProviders) {
this.recipientSignatureProviders = recipientSignatureProviders;
return this;
}
public TemplateRole addRecipientSignatureProvidersItem(RecipientSignatureProvider recipientSignatureProvidersItem) {
if (this.recipientSignatureProviders == null) {
this.recipientSignatureProviders = new java.util.ArrayList();
}
this.recipientSignatureProviders.add(recipientSignatureProvidersItem);
return this;
}
/**
*
* @return recipientSignatureProviders
**/
@ApiModelProperty(value = "")
public java.util.List getRecipientSignatureProviders() {
return recipientSignatureProviders;
}
public void setRecipientSignatureProviders(java.util.List recipientSignatureProviders) {
this.recipientSignatureProviders = recipientSignatureProviders;
}
public TemplateRole roleName(String roleName) {
this.roleName = roleName;
return this;
}
/**
* Optional element. Specifies the role name associated with the recipient.
This is required when working with template recipients.
* @return roleName
**/
@ApiModelProperty(value = "Optional element. Specifies the role name associated with the recipient.
This is required when working with template recipients.")
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public TemplateRole routingOrder(String routingOrder) {
this.routingOrder = routingOrder;
return this;
}
/**
* Specifies the routing order of the recipient in the envelope.
* @return routingOrder
**/
@ApiModelProperty(value = "Specifies the routing order of the recipient in the envelope. ")
public String getRoutingOrder() {
return routingOrder;
}
public void setRoutingOrder(String routingOrder) {
this.routingOrder = routingOrder;
}
public TemplateRole signingGroupId(String signingGroupId) {
this.signingGroupId = signingGroupId;
return this;
}
/**
* When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once).
* @return signingGroupId
**/
@ApiModelProperty(value = "When set to **true** and the feature is enabled in the sender's account, the signing recipient is required to draw signatures and initials at each signature/initial tab ( instead of adopting a signature/initial style or only drawing a signature/initial once).")
public String getSigningGroupId() {
return signingGroupId;
}
public void setSigningGroupId(String signingGroupId) {
this.signingGroupId = signingGroupId;
}
public TemplateRole tabs(Tabs tabs) {
this.tabs = tabs;
return this;
}
/**
* Get tabs
* @return tabs
**/
@ApiModelProperty(value = "")
public Tabs getTabs() {
return tabs;
}
public void setTabs(Tabs tabs) {
this.tabs = tabs;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TemplateRole templateRole = (TemplateRole) o;
return Objects.equals(this.accessCode, templateRole.accessCode) &&
Objects.equals(this.clientUserId, templateRole.clientUserId) &&
Objects.equals(this.defaultRecipient, templateRole.defaultRecipient) &&
Objects.equals(this.email, templateRole.email) &&
Objects.equals(this.emailNotification, templateRole.emailNotification) &&
Objects.equals(this.embeddedRecipientStartURL, templateRole.embeddedRecipientStartURL) &&
Objects.equals(this.inPersonSignerName, templateRole.inPersonSignerName) &&
Objects.equals(this.name, templateRole.name) &&
Objects.equals(this.recipientSignatureProviders, templateRole.recipientSignatureProviders) &&
Objects.equals(this.roleName, templateRole.roleName) &&
Objects.equals(this.routingOrder, templateRole.routingOrder) &&
Objects.equals(this.signingGroupId, templateRole.signingGroupId) &&
Objects.equals(this.tabs, templateRole.tabs);
}
@Override
public int hashCode() {
return Objects.hash(accessCode, clientUserId, defaultRecipient, email, emailNotification, embeddedRecipientStartURL, inPersonSignerName, name, recipientSignatureProviders, roleName, routingOrder, signingGroupId, tabs);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TemplateRole {\n");
sb.append(" accessCode: ").append(toIndentedString(accessCode)).append("\n");
sb.append(" clientUserId: ").append(toIndentedString(clientUserId)).append("\n");
sb.append(" defaultRecipient: ").append(toIndentedString(defaultRecipient)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" emailNotification: ").append(toIndentedString(emailNotification)).append("\n");
sb.append(" embeddedRecipientStartURL: ").append(toIndentedString(embeddedRecipientStartURL)).append("\n");
sb.append(" inPersonSignerName: ").append(toIndentedString(inPersonSignerName)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" recipientSignatureProviders: ").append(toIndentedString(recipientSignatureProviders)).append("\n");
sb.append(" roleName: ").append(toIndentedString(roleName)).append("\n");
sb.append(" routingOrder: ").append(toIndentedString(routingOrder)).append("\n");
sb.append(" signingGroupId: ").append(toIndentedString(signingGroupId)).append("\n");
sb.append(" tabs: ").append(toIndentedString(tabs)).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 ");
}
}