Sha256: a12332d5dce1d14f464a83245e588563bbfd02433eed73a04e6b5a3ac1c7f2b3
Contents?: true
Size: 890 Bytes
Versions: 11
Compression:
Stored size: 890 Bytes
Contents
module HelloSign module Resource # # Contains information regarding documents that need to be signed # Take a look at our {https://www.hellosign.com/api/reference#SignatureRequest signature request resource document} # for more information about this. # # @author [hellosign] # class SignatureRequest < BaseResource # # create a new SignatureRequest from a hash. If a key is defined then account data with be the value of hash[key], otherwise the hash itself # @param hash [Hash] signature request's data # @param key [String] (signature_request) key of the hash, point to where signature request data is. If nil then the hash itself # # # @return [HelloSign::Resource::SignatureRequest] a SignatureRequest resource def initialize(hash, key='signature_request') super end end end end
Version data entries
11 entries across 11 versions & 1 rubygems