File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ group :test do
6666 gem 'chromedriver-helper' , '~> 2.1.1'
6767end
6868
69- gem 'docusign_esign' , '~> 3.15 .0'
69+ gem 'docusign_esign' , '~> 3.17 .0'
7070gem 'docusign_monitor' , '~> 1.1.0'
7171gem 'docusign_rooms' , '~> 1.2.0.rc1'
7272gem 'docusign_click' , '~> 1.0.0'
Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ def make_envelope(envelope_args)
8989 envelope_definition . recipients = recipients
9090
9191 # Create recipientRules model
92- rule = DocuSign_eSign ::EnvelopeDelayRuleApiModel . new (
92+ rule = DocuSign_eSign ::EnvelopeDelayRule . new (
9393 resumeDate : envelope_args [ :resume_date ] . to_s
9494 )
9595
96- scheduled_sending = DocuSign_eSign ::ScheduledSendingApiModel . new (
96+ scheduled_sending = DocuSign_eSign ::ScheduledSending . new (
9797 rules : [ rule ]
9898 )
9999
Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ def make_envelope(envelope_args)
107107
108108 # Create recipientRules model
109109 delay_time = "0." + envelope_args [ :delay ] . to_s + ":00:00" ;
110- rule = DocuSign_eSign ::EnvelopeDelayRuleApiModel . new ( delay : delay_time )
110+ rule = DocuSign_eSign ::EnvelopeDelayRule . new ( delay : delay_time )
111111
112- delayed_routing = DocuSign_eSign ::DelayedRoutingApiModel . new ( rules : [ rule ] )
112+ delayed_routing = DocuSign_eSign ::DelayedRouting . new ( rules : [ rule ] )
113113
114114 # Create a workflow model
115115 workflow_step = DocuSign_eSign ::WorkflowStep . new (
You can’t perform that action at this time.
0 commit comments