Class: Docusign::RequestRecipientTokenClientURLs

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign/docusign.rb,
lib/docusign/request_recipient_token_client_urls.rb

Overview

http://www.docusign.net/API/3.0RequestRecipientTokenClientURLs

onSigningComplete - SOAP::SOAPString
onViewingComplete - SOAP::SOAPString
onCancel - SOAP::SOAPString
onDecline - SOAP::SOAPString
onSessionTimeout - SOAP::SOAPString
onTTLExpired - SOAP::SOAPString
onException - SOAP::SOAPString
onAccessCodeFailed - SOAP::SOAPString
onIdCheckFailed - SOAP::SOAPString
onFaxPending - SOAP::SOAPString
generateSignedDocumentAsynch - SOAP::SOAPBoolean

Constant Summary collapse

CALLBACKS =

List all callback names, underscored, without the leading “on_” eg. ‘session_timeout’, ‘signing_complete’, etc.

instance_methods.select { |m| m =~ /^on/ }.reject { |m| m =~ /=/ }.map { |m| m.gsub(/^on/, '').underscore }

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil, onFaxPending = nil, generateSignedDocumentAsynch = nil) ⇒ RequestRecipientTokenClientURLs

Returns a new instance of RequestRecipientTokenClientURLs.



1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
# File 'lib/docusign/docusign.rb', line 1511

def initialize(onSigningComplete = nil, onViewingComplete = nil, onCancel = nil, onDecline = nil, onSessionTimeout = nil, onTTLExpired = nil, onException = nil, onAccessCodeFailed = nil, onIdCheckFailed = nil, onFaxPending = nil, generateSignedDocumentAsynch = nil)
  @onSigningComplete = onSigningComplete
  @onViewingComplete = onViewingComplete
  @onCancel = onCancel
  @onDecline = onDecline
  @onSessionTimeout = onSessionTimeout
  @onTTLExpired = onTTLExpired
  @onException = onException
  @onAccessCodeFailed = onAccessCodeFailed
  @onIdCheckFailed = onIdCheckFailed
  @onFaxPending = onFaxPending
  @generateSignedDocumentAsynch = generateSignedDocumentAsynch
end

Instance Attribute Details

#generateSignedDocumentAsynchObject

Returns the value of attribute generateSignedDocumentAsynch.



1509
1510
1511
# File 'lib/docusign/docusign.rb', line 1509

def generateSignedDocumentAsynch
  @generateSignedDocumentAsynch
end

#onAccessCodeFailedObject

Returns the value of attribute onAccessCodeFailed.



1506
1507
1508
# File 'lib/docusign/docusign.rb', line 1506

def onAccessCodeFailed
  @onAccessCodeFailed
end

#onCancelObject

Returns the value of attribute onCancel.



1501
1502
1503
# File 'lib/docusign/docusign.rb', line 1501

def onCancel
  @onCancel
end

#onDeclineObject

Returns the value of attribute onDecline.



1502
1503
1504
# File 'lib/docusign/docusign.rb', line 1502

def onDecline
  @onDecline
end

#onExceptionObject

Returns the value of attribute onException.



1505
1506
1507
# File 'lib/docusign/docusign.rb', line 1505

def onException
  @onException
end

#onFaxPendingObject

Returns the value of attribute onFaxPending.



1508
1509
1510
# File 'lib/docusign/docusign.rb', line 1508

def onFaxPending
  @onFaxPending
end

#onIdCheckFailedObject

Returns the value of attribute onIdCheckFailed.



1507
1508
1509
# File 'lib/docusign/docusign.rb', line 1507

def onIdCheckFailed
  @onIdCheckFailed
end

#onSessionTimeoutObject

Returns the value of attribute onSessionTimeout.



1503
1504
1505
# File 'lib/docusign/docusign.rb', line 1503

def onSessionTimeout
  @onSessionTimeout
end

#onSigningCompleteObject

Returns the value of attribute onSigningComplete.



1499
1500
1501
# File 'lib/docusign/docusign.rb', line 1499

def onSigningComplete
  @onSigningComplete
end

#onTTLExpiredObject

Returns the value of attribute onTTLExpired.



1504
1505
1506
# File 'lib/docusign/docusign.rb', line 1504

def onTTLExpired
  @onTTLExpired
end

#onViewingCompleteObject

Returns the value of attribute onViewingComplete.



1500
1501
1502
# File 'lib/docusign/docusign.rb', line 1500

def onViewingComplete
  @onViewingComplete
end