Sha256: 69a88f2cbe9dc88ea9e3b3b4f7187146c41cc34783ea2e8ba6801c70fa845530

Contents?: true

Size: 805 Bytes

Versions: 2

Compression:

Stored size: 805 Bytes

Contents

module HelloSign
  module Resource

    #
    # A group of documents that a user can take ownership of by going to the claim URL
    # Take a look at our {https://www.hellosign.com/api/reference}
    # for more information about this.
    #
    # @author [hellosign]
    #
    class TemplateDraft < BaseResource

      #
      # create a new TemplateDraft from a hash. If a key is defined then template draft data will be the value of hash[key], otherwise the hash itself
      # @param  hash [Hash] template draft's data
      # @param  key [String] (template_draft) key of the hash, point to where template draft data is. If nil then the hash itself
      #
      # @return [HelloSign::Resource:Team] a Team resource
      def initialize(hash, key='template')
        super
      end
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hellosign-ruby-sdk-3.0.11 lib/hello_sign/resource/template_draft.rb
hellosign-ruby-sdk-3.0.10 lib/hello_sign/resource/template_draft.rb