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
transformPdfFields - SOAP::SOAPBoolean
fileExtension - SOAP::SOAPString
matchBoxes - Docusign::ArrayOfMatchBox
Instance Attribute Summary collapse
-
#fileExtension ⇒ Object
Returns the value of attribute fileExtension.
-
#iD ⇒ Object
Returns the value of attribute iD.
-
#matchBoxes ⇒ Object
Returns the value of attribute matchBoxes.
-
#name ⇒ Object
Returns the value of attribute name.
-
#password ⇒ Object
Returns the value of attribute password.
-
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
-
#transformPdfFields ⇒ Object
Returns the value of attribute transformPdfFields.
Instance Method Summary collapse
-
#initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil) ⇒ Document
constructor
A new instance of Document.
Constructor Details
#initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil) ⇒ Document
Returns a new instance of Document.
94 95 96 97 98 99 100 101 102 |
# File 'lib/docusign/docusign.rb', line 94 def initialize(iD = nil, name = nil, pDFBytes = nil, password = nil, transformPdfFields = nil, fileExtension = nil, matchBoxes = nil) @iD = iD @name = name @pDFBytes = pDFBytes @password = password @transformPdfFields = transformPdfFields @fileExtension = fileExtension @matchBoxes = matchBoxes end |
Instance Attribute Details
#fileExtension ⇒ Object
Returns the value of attribute fileExtension.
91 92 93 |
# File 'lib/docusign/docusign.rb', line 91 def fileExtension @fileExtension end |
#iD ⇒ Object
Returns the value of attribute iD.
86 87 88 |
# File 'lib/docusign/docusign.rb', line 86 def iD @iD end |
#matchBoxes ⇒ Object
Returns the value of attribute matchBoxes.
92 93 94 |
# File 'lib/docusign/docusign.rb', line 92 def matchBoxes @matchBoxes end |
#name ⇒ Object
Returns the value of attribute name.
87 88 89 |
# File 'lib/docusign/docusign.rb', line 87 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
89 90 91 |
# File 'lib/docusign/docusign.rb', line 89 def password @password end |
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
88 89 90 |
# File 'lib/docusign/docusign.rb', line 88 def pDFBytes @pDFBytes end |
#transformPdfFields ⇒ Object
Returns the value of attribute transformPdfFields.
90 91 92 |
# File 'lib/docusign/docusign.rb', line 90 def transformPdfFields @transformPdfFields end |