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

com.lacunasoftware.signer.documents.DocumentSignaturesInfoModel Maven / Gradle / Ivy

/*
 * Dropsigner (HML)
 *     

Authentication

In order to call this APIs, you will need an API key. Set the API key in the header X-Api-Key:

X-Api-Key: your-app|xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

HTTP Codes

The APIs will return the following HTTP codes:

Code Description
200 (OK) Request processed successfully. The response is different for each API, please refer to the operation's documentation
400 (Bad Request) Syntax error. For instance, when a required field was not provided
401 (Unauthorized) API key not provided or invalid
403 (Forbidden) API key is valid, but the application has insufficient permissions to complete the requested operation
422 (Unprocessable Entity) API error. The response is as defined in ErrorModel

Error Codes

Some of the error codes returned in a 422 response are provided bellow*:

  • CertificateNotFound
  • DocumentNotFound
  • FolderNotFound
  • CpfMismatch
  • CpfNotExpected
  • InvalidFlowAction
  • DocumentInvalidKey

*The codes shown above are the main error codes. Nonetheless, this list is not comprehensive. New codes may be added anytime without previous warning.


Webhooks

It is recomended to subscribe to Webhook events instead of polling APIs. To do so, enable webhooks and register an URL that will receive a POST request whenever one of the events bellow occur.

All requests have the format described in Webhooks.WebhookModel. The data field varies according to the webhook event type:

Event type Description Payload
DocumentSigned Triggered when a document is signed. Webhooks.DocumentSignedModel
DocumentApproved Triggered when a document is approved. Webhooks.DocumentApprovedModel
DocumentRefused Triggered when a document is refused. Webhooks.DocumentRefusedModel
DocumentConcluded Triggered when the flow of a document is concluded. Webhooks.DocumentConcludedModel
DocumentCanceled Triggered when the document is canceled. Webhooks.DocumentCanceledModel
DocumentsCreated (v1.50.0) Triggered when one or more documents are created. Webhooks.DocumentsCreatedModel

To register your application URL and enable Webhooks, access the integrations section in your organization's details page.

* * OpenAPI spec version: 1.55.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ package com.lacunasoftware.signer.documents; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.gson.annotations.SerializedName; import com.lacunasoftware.signer.DocumentStatus; import com.lacunasoftware.signer.DocumentTypes; import com.lacunasoftware.signer.SignerModel; import io.swagger.v3.oas.annotations.media.Schema; import java.util.ArrayList; import java.util.List; import java.util.UUID; import org.threeten.bp.OffsetDateTime; /** * DocumentSignaturesInfoModel */ public class DocumentSignaturesInfoModel { @JsonProperty("id") @SerializedName("id") private UUID id = null; @JsonProperty("name") @SerializedName("name") private String name = null; @JsonProperty("filename") @SerializedName("filename") private String filename = null; @JsonProperty("mimeType") @SerializedName("mimeType") private String mimeType = null; @JsonProperty("createdBy") @SerializedName("createdBy") private CreatorModel createdBy = null; @JsonProperty("isConcluded") @SerializedName("isConcluded") private Boolean isConcluded = null; @JsonProperty("isFile") @SerializedName("isFile") private Boolean isFile = null; @JsonProperty("isEnvelope") @SerializedName("isEnvelope") private Boolean isEnvelope = null; @JsonProperty("creationDate") @SerializedName("creationDate") private OffsetDateTime creationDate = null; @JsonProperty("updateDate") @SerializedName("updateDate") private OffsetDateTime updateDate = null; @JsonProperty("signers") @SerializedName("signers") private List signers = null; @JsonProperty("status") @SerializedName("status") private DocumentStatus status = null; @JsonProperty("type") @SerializedName("type") private DocumentTypes type = null; public DocumentSignaturesInfoModel id(UUID id) { this.id = id; return this; } /** * Get id * @return id **/ @Schema(description = "") public UUID getId() { return id; } public void setId(UUID id) { this.id = id; } public DocumentSignaturesInfoModel name(String name) { this.name = name; return this; } /** * Get name * @return name **/ @Schema(description = "") public String getName() { return name; } public void setName(String name) { this.name = name; } public DocumentSignaturesInfoModel filename(String filename) { this.filename = filename; return this; } /** * Get filename * @return filename **/ @Schema(description = "") public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public DocumentSignaturesInfoModel mimeType(String mimeType) { this.mimeType = mimeType; return this; } /** * Get mimeType * @return mimeType **/ @Schema(description = "") public String getMimeType() { return mimeType; } public void setMimeType(String mimeType) { this.mimeType = mimeType; } public DocumentSignaturesInfoModel createdBy(CreatorModel createdBy) { this.createdBy = createdBy; return this; } /** * Get createdBy * @return createdBy **/ @Schema(description = "") public CreatorModel getCreatedBy() { return createdBy; } public void setCreatedBy(CreatorModel createdBy) { this.createdBy = createdBy; } public DocumentSignaturesInfoModel isConcluded(Boolean isConcluded) { this.isConcluded = isConcluded; return this; } /** * True if all actions requested in the document are concluded. * @return isConcluded **/ @Schema(description = "True if all actions requested in the document are concluded.") public Boolean isIsConcluded() { return isConcluded; } public void setIsConcluded(Boolean isConcluded) { this.isConcluded = isConcluded; } public DocumentSignaturesInfoModel isFile(Boolean isFile) { this.isFile = isFile; return this; } /** * Get isFile * @return isFile **/ @Schema(description = "") public Boolean isIsFile() { return isFile; } public void setIsFile(Boolean isFile) { this.isFile = isFile; } public DocumentSignaturesInfoModel isEnvelope(Boolean isEnvelope) { this.isEnvelope = isEnvelope; return this; } /** * Get isEnvelope * @return isEnvelope **/ @Schema(description = "") public Boolean isIsEnvelope() { return isEnvelope; } public void setIsEnvelope(Boolean isEnvelope) { this.isEnvelope = isEnvelope; } public DocumentSignaturesInfoModel creationDate(OffsetDateTime creationDate) { this.creationDate = creationDate; return this; } /** * Get creationDate * @return creationDate **/ @Schema(description = "") public OffsetDateTime getCreationDate() { return creationDate; } public void setCreationDate(OffsetDateTime creationDate) { this.creationDate = creationDate; } public DocumentSignaturesInfoModel updateDate(OffsetDateTime updateDate) { this.updateDate = updateDate; return this; } /** * Get updateDate * @return updateDate **/ @Schema(description = "") public OffsetDateTime getUpdateDate() { return updateDate; } public void setUpdateDate(OffsetDateTime updateDate) { this.updateDate = updateDate; } public DocumentSignaturesInfoModel signers(List signers) { this.signers = signers; return this; } public DocumentSignaturesInfoModel addSignersItem(SignerModel signersItem) { if (this.signers == null) { this.signers = new ArrayList(); } this.signers.add(signersItem); return this; } /** * List of who signed the document. Each element in the list contains a validation result. * @return signers **/ @Schema(description = "List of who signed the document. Each element in the list contains a validation result.") public List getSigners() { return signers; } public void setSigners(List signers) { this.signers = signers; } public DocumentSignaturesInfoModel status(DocumentStatus status) { this.status = status; return this; } /** * Get status * @return status **/ @Schema(description = "") public DocumentStatus getStatus() { return status; } public void setStatus(DocumentStatus status) { this.status = status; } public DocumentSignaturesInfoModel type(DocumentTypes type) { this.type = type; return this; } /** * Get type * @return type **/ @Schema(description = "") public DocumentTypes getType() { return type; } public void setType(DocumentTypes type) { this.type = type; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DocumentSignaturesInfoModel documentsDocumentSignaturesInfoModel = (DocumentSignaturesInfoModel) o; return Objects.equals(this.id, documentsDocumentSignaturesInfoModel.id) && Objects.equals(this.name, documentsDocumentSignaturesInfoModel.name) && Objects.equals(this.filename, documentsDocumentSignaturesInfoModel.filename) && Objects.equals(this.mimeType, documentsDocumentSignaturesInfoModel.mimeType) && Objects.equals(this.createdBy, documentsDocumentSignaturesInfoModel.createdBy) && Objects.equals(this.isConcluded, documentsDocumentSignaturesInfoModel.isConcluded) && Objects.equals(this.isFile, documentsDocumentSignaturesInfoModel.isFile) && Objects.equals(this.isEnvelope, documentsDocumentSignaturesInfoModel.isEnvelope) && Objects.equals(this.creationDate, documentsDocumentSignaturesInfoModel.creationDate) && Objects.equals(this.updateDate, documentsDocumentSignaturesInfoModel.updateDate) && Objects.equals(this.signers, documentsDocumentSignaturesInfoModel.signers) && Objects.equals(this.status, documentsDocumentSignaturesInfoModel.status) && Objects.equals(this.type, documentsDocumentSignaturesInfoModel.type); } @Override public int hashCode() { return Objects.hash(id, name, filename, mimeType, createdBy, isConcluded, isFile, isEnvelope, creationDate, updateDate, signers, status, type); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentSignaturesInfoModel {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); sb.append(" filename: ").append(toIndentedString(filename)).append("\n"); sb.append(" mimeType: ").append(toIndentedString(mimeType)).append("\n"); sb.append(" createdBy: ").append(toIndentedString(createdBy)).append("\n"); sb.append(" isConcluded: ").append(toIndentedString(isConcluded)).append("\n"); sb.append(" isFile: ").append(toIndentedString(isFile)).append("\n"); sb.append(" isEnvelope: ").append(toIndentedString(isEnvelope)).append("\n"); sb.append(" creationDate: ").append(toIndentedString(creationDate)).append("\n"); sb.append(" updateDate: ").append(toIndentedString(updateDate)).append("\n"); sb.append(" signers: ").append(toIndentedString(signers)).append("\n"); sb.append(" status: ").append(toIndentedString(status)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).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