Class: BusinessOwnerInfoType

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal-business/default.rb

Overview

urn:ebay:apis:eBLBaseComponentsBusinessOwnerInfoType

Constant Summary collapse

@@schema_type =
"BusinessOwnerInfoType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["owner", ["PayerInfoType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Owner")]],
  ["homePhone", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HomePhone")]],
  ["mobilePhone", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MobilePhone")]],
  ["sSN", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SSN")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(owner = nil, homePhone = nil, mobilePhone = nil, sSN = nil) ⇒ BusinessOwnerInfoType

Returns a new instance of BusinessOwnerInfoType.



4206
4207
4208
4209
4210
4211
# File 'lib/paypal-business/default.rb', line 4206

def initialize(owner = nil, homePhone = nil, mobilePhone = nil, sSN = nil)
  @owner = owner
  @homePhone = homePhone
  @mobilePhone = mobilePhone
  @sSN = sSN
end

Instance Attribute Details

#homePhoneObject

Returns the value of attribute homePhone.



4202
4203
4204
# File 'lib/paypal-business/default.rb', line 4202

def homePhone
  @homePhone
end

#mobilePhoneObject

Returns the value of attribute mobilePhone.



4203
4204
4205
# File 'lib/paypal-business/default.rb', line 4203

def mobilePhone
  @mobilePhone
end

#ownerObject

Returns the value of attribute owner.



4201
4202
4203
# File 'lib/paypal-business/default.rb', line 4201

def owner
  @owner
end

#sSNObject

Returns the value of attribute sSN.



4204
4205
4206
# File 'lib/paypal-business/default.rb', line 4204

def sSN
  @sSN
end