Class: Docusign::AddressInformation
- Inherits:
-
Object
- Object
- Docusign::AddressInformation
- 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
-
#city ⇒ Object
Returns the value of attribute city.
-
#state ⇒ Object
Returns the value of attribute state.
-
#street1 ⇒ Object
Returns the value of attribute street1.
-
#street2 ⇒ Object
Returns the value of attribute street2.
-
#zip ⇒ Object
Returns the value of attribute zip.
-
#zipPlus4 ⇒ Object
Returns the value of attribute zipPlus4.
Instance Method Summary collapse
-
#initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil) ⇒ AddressInformation
constructor
A new instance of AddressInformation.
Constructor Details
#initialize(street1 = nil, street2 = nil, city = nil, state = nil, zip = nil, zipPlus4 = nil) ⇒ AddressInformation
Returns a new instance of AddressInformation.
282 283 284 285 286 287 288 289 |
# File 'lib/docusign/docusign.rb', line 282 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
#city ⇒ Object
Returns the value of attribute city.
277 278 279 |
# File 'lib/docusign/docusign.rb', line 277 def city @city end |
#state ⇒ Object
Returns the value of attribute state.
278 279 280 |
# File 'lib/docusign/docusign.rb', line 278 def state @state end |
#street1 ⇒ Object
Returns the value of attribute street1.
275 276 277 |
# File 'lib/docusign/docusign.rb', line 275 def street1 @street1 end |
#street2 ⇒ Object
Returns the value of attribute street2.
276 277 278 |
# File 'lib/docusign/docusign.rb', line 276 def street2 @street2 end |
#zip ⇒ Object
Returns the value of attribute zip.
279 280 281 |
# File 'lib/docusign/docusign.rb', line 279 def zip @zip end |
#zipPlus4 ⇒ Object
Returns the value of attribute zipPlus4.
280 281 282 |
# File 'lib/docusign/docusign.rb', line 280 def zipPlus4 @zipPlus4 end |