Class: Docusign::DocumentPDF
- Inherits:
-
Object
- Object
- Docusign::DocumentPDF
- Defined in:
- lib/docusign/docusign.rb
Overview
http://www.docusign.net/API/3.0DocumentPDF
name - SOAP::SOAPString
pDFBytes - SOAP::SOAPBase64
documentID - SOAP::SOAPPositiveInteger
documentType - Docusign::DocumentType
Instance Attribute Summary collapse
-
#documentID ⇒ Object
Returns the value of attribute documentID.
-
#documentType ⇒ Object
Returns the value of attribute documentType.
-
#name ⇒ Object
Returns the value of attribute name.
-
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
Instance Method Summary collapse
-
#initialize(name = nil, pDFBytes = nil, documentID = nil, documentType = nil) ⇒ DocumentPDF
constructor
A new instance of DocumentPDF.
Constructor Details
#initialize(name = nil, pDFBytes = nil, documentID = nil, documentType = nil) ⇒ DocumentPDF
Returns a new instance of DocumentPDF.
1243 1244 1245 1246 1247 1248 |
# File 'lib/docusign/docusign.rb', line 1243 def initialize(name = nil, pDFBytes = nil, documentID = nil, documentType = nil) @name = name @pDFBytes = pDFBytes @documentID = documentID @documentType = documentType end |
Instance Attribute Details
#documentID ⇒ Object
Returns the value of attribute documentID.
1240 1241 1242 |
# File 'lib/docusign/docusign.rb', line 1240 def documentID @documentID end |
#documentType ⇒ Object
Returns the value of attribute documentType.
1241 1242 1243 |
# File 'lib/docusign/docusign.rb', line 1241 def documentType @documentType end |
#name ⇒ Object
Returns the value of attribute name.
1238 1239 1240 |
# File 'lib/docusign/docusign.rb', line 1238 def name @name end |
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
1239 1240 1241 |
# File 'lib/docusign/docusign.rb', line 1239 def pDFBytes @pDFBytes end |