lib/hello_sign/api/signature_request.rb in hellosign-ruby-sdk-3.2.11 vs lib/hello_sign/api/signature_request.rb in hellosign-ruby-sdk-3.2.13

- old
+ new

@@ -92,10 +92,11 @@ # @return [HelloSign::Resource::SignatureRequest] a SignatureRequest # # @example # signature_request = @client.send_signature_request( # :test_mode => 1, + # :allow_decline => 1, # :title => 'NDA with Acme Co.', # :subject => 'The NDA we talked about', # :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any questions.', # :metadata => { # :client_id => '1234', @@ -143,10 +144,11 @@ # # @return [HelloSign::Resource::SignatureRequest] a SignatureRequest # @example # signature_request = @client.send_signature_request_with_template( # :test_mode => 1, + # :allow_decline => 1, # :template_ids => [ # 'c26b8a16784a872da37ea946b9ddec7c1e11dff6', # 'c7ab48e9a9ee7102dd6229dbbc719abc7d90ff9f' # ], # :title => 'Purchase Order', @@ -170,10 +172,11 @@ # ] # ) # @example # signature_request = @client.send_signature_request_with_template( # :test_mode => 1, + # :allow_decline => 0, # :template_id => 'c26b8a16784a872da37ea946b9ddec7c1e11dff6', # :title => 'Purchase Order', # :subject => 'Purchase Order', # :message => 'Glad we could come to an agreement.', # :metadata => { @@ -273,10 +276,11 @@ # # @return [HelloSign::Resource::SignatureRequest] a SignatureRequest # @example # request = @client.create_embedded_signature_request( # :test_mode => 1, + # :allow_decline => 1, # :client_id => 'b6b8e7deaf8f0b95c029dca049356d4a2cf9710a', # :title => 'NDA with Acme Co.', # :subject => 'The NDA we talked about', # :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any questions.', # :metadata => { @@ -329,9 +333,10 @@ # # @return [HelloSign::Resource::SignatureRequest] a SignatureRequest # @example # request = @client.create_embedded_signature_request_with_template( # :test_mode => 1, + # :allow_decline => 1, # :client_id => 'b6b8e7deaf8f0b95c029dca049356d4a2cf9710a', # :template_id => 'c26b8a16784a872da37ea946b9ddec7c1e11dff6', # :title => 'Purchase Order', # :subject => 'Purchase Order', # :message => 'Glad we could come to an agreement.',