Class: ReceiverInfoType

Inherits:
Object
  • Object
show all
Defined in:
lib/v_paypal/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.



3456
3457
3458
3459
3460
# File 'lib/v_paypal/default.rb', line 3456

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.



3452
3453
3454
# File 'lib/v_paypal/default.rb', line 3452

def business
  @business
end

#receiverObject

Returns the value of attribute receiver.



3453
3454
3455
# File 'lib/v_paypal/default.rb', line 3453

def receiver
  @receiver
end

#receiverIDObject

Returns the value of attribute receiverID.



3454
3455
3456
# File 'lib/v_paypal/default.rb', line 3454

def receiverID
  @receiverID
end