Class: MerchantPullPaymentResponseType

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



3285
3286
3287
3288
3289
# File 'lib/v_paypal/default.rb', line 3285

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.



3283
3284
3285
# File 'lib/v_paypal/default.rb', line 3283

def merchantPullInfo
  @merchantPullInfo
end

#payerInfoObject

Returns the value of attribute payerInfo.



3281
3282
3283
# File 'lib/v_paypal/default.rb', line 3281

def payerInfo
  @payerInfo
end

#paymentInfoObject

Returns the value of attribute paymentInfo.



3282
3283
3284
# File 'lib/v_paypal/default.rb', line 3282

def paymentInfo
  @paymentInfo
end