Class: GetExpressCheckoutDetailsResponseDetailsType

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



3154
3155
3156
3157
3158
3159
3160
# File 'lib/v_paypal/default.rb', line 3154

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.



3152
3153
3154
# File 'lib/v_paypal/default.rb', line 3152

def contactPhone
  @contactPhone
end

#customObject

Returns the value of attribute custom.



3150
3151
3152
# File 'lib/v_paypal/default.rb', line 3150

def custom
  @custom
end

#invoiceIDObject

Returns the value of attribute invoiceID.



3151
3152
3153
# File 'lib/v_paypal/default.rb', line 3151

def invoiceID
  @invoiceID
end

#payerInfoObject

Returns the value of attribute payerInfo.



3149
3150
3151
# File 'lib/v_paypal/default.rb', line 3149

def payerInfo
  @payerInfo
end

#tokenObject

Returns the value of attribute token.



3148
3149
3150
# File 'lib/v_paypal/default.rb', line 3148

def token
  @token
end