File tree Expand file tree Collapse file tree 4 files changed +48
-2943
lines changed
Expand file tree Collapse file tree 4 files changed +48
-2943
lines changed Original file line number Diff line number Diff line change 102102 // Create a workflow model
103103 // Add the workflow rule that sets the delay in hours before the envelope is routed to the second signer
104104 let delayTime = "0." + args . delay . toString ( ) + ":00:00" ;
105- const rule = docusign . EnvelopeDelayRuleApiModel . constructFromObject ( {
105+ const rule = docusign . EnvelopeDelayRule . constructFromObject ( {
106106 delay : delayTime
107107 } ) ;
108- const delayedRouting = docusign . DelayedRoutingApiModel . constructFromObject ( {
108+ const delayedRouting = docusign . DelayedRouting . constructFromObject ( {
109109 rules : [ rule ]
110110 } ) ;
111111
Original file line number Diff line number Diff line change 9191
9292 // Create a workflow model
9393 // Add the workflow rule that sets the schedule for the envelope to be sent
94- const rule = docusign . EnvelopeDelayRuleApiModel . constructFromObject ( {
94+ const rule = docusign . EnvelopeDelayRule . constructFromObject ( {
9595 resumeDate : args . resumeDate . toString ( )
9696 } ) ;
97- const scheduledSendingModel = docusign . ScheduledSendingApiModel . constructFromObject ( {
97+ const scheduledSendingModel = docusign . ScheduledSending . constructFromObject ( {
9898 rules : [ rule ]
9999 } ) ;
100100
You can’t perform that action at this time.
0 commit comments