Class: Docusign::Attachment

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

Overview

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

data - SOAP::SOAPBase64
label - SOAP::SOAPString
type - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil, label = nil, type = nil) ⇒ Attachment

Returns a new instance of Attachment.



415
416
417
418
419
# File 'lib/docusign/docusign.rb', line 415

def initialize(data = nil, label = nil, type = nil)
  @data = data
  @label = label
  @type = type
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



411
412
413
# File 'lib/docusign/docusign.rb', line 411

def data
  @data
end

#labelObject

Returns the value of attribute label.



412
413
414
# File 'lib/docusign/docusign.rb', line 412

def label
  @label
end

#typeObject

Returns the value of attribute type.



413
414
415
# File 'lib/docusign/docusign.rb', line 413

def type
  @type
end