class Universign::SignerInfos

Public Instance Methods

action_date() click to toggle source

the action date

@return [String]

# File lib/universign/signer_infos.rb, line 38
def action_date
  data['actionDate']
end
email() click to toggle source

The signer’s email

@return [String]

# File lib/universign/signer_infos.rb, line 52
def email
  data['email']
end
error() click to toggle source

The error message in case status == `failed`

@return [String]

# File lib/universign/signer_infos.rb, line 24
def error
  data['error']
end
refused_docs() click to toggle source

List of refused docs indexes

@return [Array<Integer>]

# File lib/universign/signer_infos.rb, line 45
def refused_docs
  data['refusedDocs']
end
status() click to toggle source

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
url() click to toggle source

The URL of the signature page

@return [String]

# File lib/universign/signer_infos.rb, line 31
def url
  data['url']
end