Class: MerchantPullPaymentResponseType

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

Overview

urn:ebay:apis:eBLBaseComponentsMerchantPullPaymentResponseType

Constant Summary collapse

@@schema_type =
"MerchantPullPaymentResponseType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["payerInfo", ["PayerInfoType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PayerInfo")]],
  ["paymentInfo", ["PaymentInfoType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PaymentInfo")]],
  ["merchantPullInfo", ["MerchantPullInfoType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MerchantPullInfo")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payerInfo = nil, paymentInfo = nil, merchantPullInfo = nil) ⇒ MerchantPullPaymentResponseType

Returns a new instance of MerchantPullPaymentResponseType.



3465
3466
3467
3468
3469
# File 'lib/paypal-business/default.rb', line 3465

def initialize(payerInfo = nil, paymentInfo = nil, merchantPullInfo = nil)
  @payerInfo = payerInfo
  @paymentInfo = paymentInfo
  @merchantPullInfo = merchantPullInfo
end

Instance Attribute Details

#merchantPullInfoObject

Returns the value of attribute merchantPullInfo.



3463
3464
3465
# File 'lib/paypal-business/default.rb', line 3463

def merchantPullInfo
  @merchantPullInfo
end

#payerInfoObject

Returns the value of attribute payerInfo.



3461
3462
3463
# File 'lib/paypal-business/default.rb', line 3461

def payerInfo
  @payerInfo
end

#paymentInfoObject

Returns the value of attribute paymentInfo.



3462
3463
3464
# File 'lib/paypal-business/default.rb', line 3462

def paymentInfo
  @paymentInfo
end