Class: Docusign::Document
- Inherits:
-
Object
- Object
- Docusign::Document
- Defined in:
- lib/docusign/docusign.rb
Overview
http://www.docusign.net/API/3.0Document
iD - SOAP::SOAPPositiveInteger
name - SOAP::SOAPString
pDFBytes - SOAP::SOAPBase64
password - SOAP::SOAPString
Instance Attribute Summary collapse
-
#iD ⇒ Object
Returns the value of attribute iD.
-
#name ⇒ Object
Returns the value of attribute name.
-
#password ⇒ Object
Returns the value of attribute password.
-
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
Instance Method Summary collapse
-
#initialize(iD = nil, name = nil, pDFBytes = nil, password = nil) ⇒ Document
constructor
A new instance of Document.
Constructor Details
#initialize(iD = nil, name = nil, pDFBytes = nil, password = nil) ⇒ Document
70 71 72 73 74 75 |
# File 'lib/docusign/docusign.rb', line 70 def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil) @iD = iD @name = name @pDFBytes = pDFBytes @password = password end |
Instance Attribute Details
#iD ⇒ Object
Returns the value of attribute iD.
65 66 67 |
# File 'lib/docusign/docusign.rb', line 65 def iD @iD end |
#name ⇒ Object
Returns the value of attribute name.
66 67 68 |
# File 'lib/docusign/docusign.rb', line 66 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
68 69 70 |
# File 'lib/docusign/docusign.rb', line 68 def password @password end |
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
67 68 69 |
# File 'lib/docusign/docusign.rb', line 67 def pDFBytes @pDFBytes end |