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.



380
381
382
383
384
# File 'lib/docusign/docusign.rb', line 380

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.



376
377
378
# File 'lib/docusign/docusign.rb', line 376

def data
  @data
end

#labelObject

Returns the value of attribute label.



377
378
379
# File 'lib/docusign/docusign.rb', line 377

def label
  @label
end

#typeObject

Returns the value of attribute type.



378
379
380
# File 'lib/docusign/docusign.rb', line 378

def type
  @type
end