Class: GetExpressCheckoutDetailsResponseDetailsType

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

Overview

urn:ebay:apis:eBLBaseComponentsGetExpressCheckoutDetailsResponseDetailsType

Constant Summary collapse

@@schema_type =
"GetExpressCheckoutDetailsResponseDetailsType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["token", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Token")]],
  ["payerInfo", ["PayerInfoType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PayerInfo")]],
  ["custom", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Custom")]],
  ["invoiceID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "InvoiceID")]],
  ["contactPhone", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ContactPhone")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token = nil, payerInfo = nil, custom = nil, invoiceID = nil, contactPhone = nil) ⇒ GetExpressCheckoutDetailsResponseDetailsType

Returns a new instance of GetExpressCheckoutDetailsResponseDetailsType.



3334
3335
3336
3337
3338
3339
3340
# File 'lib/paypal-business/default.rb', line 3334

def initialize(token = nil, payerInfo = nil, custom = nil, invoiceID = nil, contactPhone = nil)
  @token = token
  @payerInfo = payerInfo
  @custom = custom
  @invoiceID = invoiceID
  @contactPhone = contactPhone
end

Instance Attribute Details

#contactPhoneObject

Returns the value of attribute contactPhone.



3332
3333
3334
# File 'lib/paypal-business/default.rb', line 3332

def contactPhone
  @contactPhone
end

#customObject

Returns the value of attribute custom.



3330
3331
3332
# File 'lib/paypal-business/default.rb', line 3330

def custom
  @custom
end

#invoiceIDObject

Returns the value of attribute invoiceID.



3331
3332
3333
# File 'lib/paypal-business/default.rb', line 3331

def invoiceID
  @invoiceID
end

#payerInfoObject

Returns the value of attribute payerInfo.



3329
3330
3331
# File 'lib/paypal-business/default.rb', line 3329

def payerInfo
  @payerInfo
end

#tokenObject

Returns the value of attribute token.



3328
3329
3330
# File 'lib/paypal-business/default.rb', line 3328

def token
  @token
end