Class: ReceiverInfoType

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

Overview

urn:ebay:apis:eBLBaseComponentsReceiverInfoType

Constant Summary collapse

@@schema_type =
"ReceiverInfoType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["business", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Business")]],
  ["receiver", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Receiver")]],
  ["receiverID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReceiverID")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(business = nil, receiver = nil, receiverID = nil) ⇒ ReceiverInfoType

Returns a new instance of ReceiverInfoType.



3636
3637
3638
3639
3640
# File 'lib/paypal-business/default.rb', line 3636

def initialize(business = nil, receiver = nil, receiverID = nil)
  @business = business
  @receiver = receiver
  @receiverID = receiverID
end

Instance Attribute Details

#businessObject

Returns the value of attribute business.



3632
3633
3634
# File 'lib/paypal-business/default.rb', line 3632

def business
  @business
end

#receiverObject

Returns the value of attribute receiver.



3633
3634
3635
# File 'lib/paypal-business/default.rb', line 3633

def receiver
  @receiver
end

#receiverIDObject

Returns the value of attribute receiverID.



3634
3635
3636
# File 'lib/paypal-business/default.rb', line 3634

def receiverID
  @receiverID
end