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