Class: Docusign::FolderItem

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

Overview

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

envelopeId - SOAP::SOAPString
status - Docusign::EnvelopeStatusCode
owner - SOAP::SOAPString
senderName - SOAP::SOAPString
senderEmail - SOAP::SOAPString
senderCompany - SOAP::SOAPString
recipientStatuses - Docusign::ArrayOfRecipientStatus
customFields - Docusign::ArrayOfCustomField
created - SOAP::SOAPDateTime
sent - SOAP::SOAPDateTime
completed - SOAP::SOAPDateTime
subject - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(envelopeId = nil, status = nil, owner = nil, senderName = nil, senderEmail = nil, senderCompany = nil, recipientStatuses = nil, customFields = nil, created = nil, sent = nil, completed = nil, subject = nil) ⇒ FolderItem

Returns a new instance of FolderItem.



2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
# File 'lib/docusign/docusign.rb', line 2111

def initialize(envelopeId = nil, status = nil, owner = nil, senderName = nil, senderEmail = nil, senderCompany = nil, recipientStatuses = nil, customFields = nil, created = nil, sent = nil, completed = nil, subject = nil)
  @envelopeId = envelopeId
  @status = status
  @owner = owner
  @senderName = senderName
  @senderEmail = senderEmail
  @senderCompany = senderCompany
  @recipientStatuses = recipientStatuses
  @customFields = customFields
  @created = created
  @sent = sent
  @completed = completed
  @subject = subject
end

Instance Attribute Details

#completedObject

Returns the value of attribute completed.



2108
2109
2110
# File 'lib/docusign/docusign.rb', line 2108

def completed
  @completed
end

#createdObject

Returns the value of attribute created.



2106
2107
2108
# File 'lib/docusign/docusign.rb', line 2106

def created
  @created
end

#customFieldsObject

Returns the value of attribute customFields.



2105
2106
2107
# File 'lib/docusign/docusign.rb', line 2105

def customFields
  @customFields
end

#envelopeIdObject

Returns the value of attribute envelopeId.



2098
2099
2100
# File 'lib/docusign/docusign.rb', line 2098

def envelopeId
  @envelopeId
end

#ownerObject

Returns the value of attribute owner.



2100
2101
2102
# File 'lib/docusign/docusign.rb', line 2100

def owner
  @owner
end

#recipientStatusesObject

Returns the value of attribute recipientStatuses.



2104
2105
2106
# File 'lib/docusign/docusign.rb', line 2104

def recipientStatuses
  @recipientStatuses
end

#senderCompanyObject

Returns the value of attribute senderCompany.



2103
2104
2105
# File 'lib/docusign/docusign.rb', line 2103

def senderCompany
  @senderCompany
end

#senderEmailObject

Returns the value of attribute senderEmail.



2102
2103
2104
# File 'lib/docusign/docusign.rb', line 2102

def senderEmail
  @senderEmail
end

#senderNameObject

Returns the value of attribute senderName.



2101
2102
2103
# File 'lib/docusign/docusign.rb', line 2101

def senderName
  @senderName
end

#sentObject

Returns the value of attribute sent.



2107
2108
2109
# File 'lib/docusign/docusign.rb', line 2107

def sent
  @sent
end

#statusObject

Returns the value of attribute status.



2099
2100
2101
# File 'lib/docusign/docusign.rb', line 2099

def status
  @status
end

#subjectObject

Returns the value of attribute subject.



2109
2110
2111
# File 'lib/docusign/docusign.rb', line 2109

def subject
  @subject
end