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.
1136 1137 1138 1139 1140 1141 |
# File 'lib/docusign/docusign.rb', line 1136 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.
1133 1134 1135 |
# File 'lib/docusign/docusign.rb', line 1133 def documentID @documentID end |
#documentType ⇒ Object
Returns the value of attribute documentType.
1134 1135 1136 |
# File 'lib/docusign/docusign.rb', line 1134 def documentType @documentType end |
#name ⇒ Object
Returns the value of attribute name.
1131 1132 1133 |
# File 'lib/docusign/docusign.rb', line 1131 def name @name end |
#pDFBytes ⇒ Object
Returns the value of attribute pDFBytes.
1132 1133 1134 |
# File 'lib/docusign/docusign.rb', line 1132 def pDFBytes @pDFBytes end |