lib/hello_sign/resource/embedded.rb in hellosign-ruby-sdk-3.7.5 vs lib/hello_sign/resource/embedded.rb in hellosign-ruby-sdk-3.7.6
- old
+ new
@@ -1,6 +1,5 @@
-#
# The MIT License (MIT)
#
# Copyright (C) 2014 hellosign.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -18,27 +17,25 @@
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
-#
module HelloSign
module Resource
- #
- # An object that contains necessary information to set up Embedded signing.
+ # Contains information about Embedded workflows.
# Take a look at our Embedded Signing Walkthrough (https://app.hellosign.com/api/embeddedSigningWalkthrough)
# for more information about this.
#
# @author [hellosign]
- #
+
class Embedded < BaseResource
+
+ # Creates a new Embedded resource from a hash. If a key is defined then embedded data with be the value of hash[key], otherwise the hash itself.
+ # @param hash [Hash] Embedded's data
+ # @param key [String] (embedded) Key of the hash, point to where Embedded data is. If nil, then the hash itself.
#
- # create a new Embedded resource from a hash. If a key is defined then embedded data with be the value of hash[key], otherwise the hash itself.
- # @param hash [Hash] Embedded's data
- # @param key [String] (embedded) Key of the hash, point to where Embedded data is. If nil, then the hash itself.
- #
- # @return [HelloSign::Resource:Embedded] an Embedded resource
+ # @return [HelloSign::Resource::Embedded] an Embedded resource
def initialize(hash, key='embedded')
super
end
end
end