Class: Docusign::TabStatus

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

Overview

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

tabType - Docusign::TabTypeCode
status - SOAP::SOAPString
xPosition - SOAP::SOAPDouble
yPosition - SOAP::SOAPDouble
signed - SOAP::SOAPDateTime
tabLabel - SOAP::SOAPString
tabName - SOAP::SOAPString
tabValue - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tabType = nil, status = nil, xPosition = nil, yPosition = nil, signed = nil, tabLabel = nil, tabName = nil, tabValue = nil) ⇒ TabStatus

Returns a new instance of TabStatus.



732
733
734
735
736
737
738
739
740
741
# File 'lib/docusign/docusign.rb', line 732

def initialize(tabType = nil, status = nil, xPosition = nil, yPosition = nil, signed = nil, tabLabel = nil, tabName = nil, tabValue = nil)
  @tabType = tabType
  @status = status
  @xPosition = xPosition
  @yPosition = yPosition
  @signed = signed
  @tabLabel = tabLabel
  @tabName = tabName
  @tabValue = tabValue
end

Instance Attribute Details

#signedObject

Returns the value of attribute signed.



727
728
729
# File 'lib/docusign/docusign.rb', line 727

def signed
  @signed
end

#statusObject

Returns the value of attribute status.



724
725
726
# File 'lib/docusign/docusign.rb', line 724

def status
  @status
end

#tabLabelObject

Returns the value of attribute tabLabel.



728
729
730
# File 'lib/docusign/docusign.rb', line 728

def tabLabel
  @tabLabel
end

#tabNameObject

Returns the value of attribute tabName.



729
730
731
# File 'lib/docusign/docusign.rb', line 729

def tabName
  @tabName
end

#tabTypeObject

Returns the value of attribute tabType.



723
724
725
# File 'lib/docusign/docusign.rb', line 723

def tabType
  @tabType
end

#tabValueObject

Returns the value of attribute tabValue.



730
731
732
# File 'lib/docusign/docusign.rb', line 730

def tabValue
  @tabValue
end

#xPositionObject

Returns the value of attribute xPosition.



725
726
727
# File 'lib/docusign/docusign.rb', line 725

def xPosition
  @xPosition
end

#yPositionObject

Returns the value of attribute yPosition.



726
727
728
# File 'lib/docusign/docusign.rb', line 726

def yPosition
  @yPosition
end