Class: Docusign::AddressInformation

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

Overview

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

street1 - SOAP::SOAPString
street2 - SOAP::SOAPString
city - SOAP::SOAPString
state - SOAP::SOAPString
zip - SOAP::SOAPString
zipPlus4 - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil) ⇒ AddressInformation

Returns a new instance of AddressInformation.



217
218
219
220
221
222
223
224
# File 'lib/docusign/docusign.rb', line 217

def initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil)
  @street1 = street1
  @street2 = street2
  @city = city
  @state = state
  @zip = zip
  @zipPlus4 = zipPlus4
end

Instance Attribute Details

#cityObject

Returns the value of attribute city.



212
213
214
# File 'lib/docusign/docusign.rb', line 212

def city
  @city
end

#stateObject

Returns the value of attribute state.



213
214
215
# File 'lib/docusign/docusign.rb', line 213

def state
  @state
end

#street1Object

Returns the value of attribute street1.



210
211
212
# File 'lib/docusign/docusign.rb', line 210

def street1
  @street1
end

#street2Object

Returns the value of attribute street2.



211
212
213
# File 'lib/docusign/docusign.rb', line 211

def street2
  @street2
end

#zipObject

Returns the value of attribute zip.



214
215
216
# File 'lib/docusign/docusign.rb', line 214

def zip
  @zip
end

#zipPlus4Object

Returns the value of attribute zipPlus4.



215
216
217
# File 'lib/docusign/docusign.rb', line 215

def zipPlus4
  @zipPlus4
end