class Universign::SignerInfos
Public Instance Methods
the action date
@return [String]
# File lib/universign/signer_infos.rb, line 38 def action_date data['actionDate'] end
The signer’s email
@return [String]
# File lib/universign/signer_infos.rb, line 52 def email data['email'] end
The error message in case status == `failed`
@return [String]
# File lib/universign/signer_infos.rb, line 24 def error data['error'] end
List of refused docs indexes
@return [Array<Integer>]
# File lib/universign/signer_infos.rb, line 45 def refused_docs data['refusedDocs'] end
The status of the signer
The existing statuses are:
| Status | Description | |:——————–:|:——————————————————————————————-:| | `waiting` | The signer has not yet been invited to sign. Others signers must sign prior to this user | | `ready` | The signer has been invited to sign, but has not tried yet | | `accessed` | The signer has accessed the signature service | | `code-sent` | The signer agreed to sign and has been sent an OTP | | `signed` | The signer has successfully signed. | | `pending-validation` | The signer has successfully signed and is pending RA validation | | `canceled` | The signer refused to sign, or one of the previous signers canceled or failed its signature | | `failed` | An error occured during the signature. In this case, error is set |
# File lib/universign/signer_infos.rb, line 17 def status data['status'] end
The URL of the signature page
@return [String]
# File lib/universign/signer_infos.rb, line 31 def url data['url'] end