Class: PaymentDetailsType

Inherits:
Object
  • Object
show all
Defined in:
lib/eBay.rb

Overview

urn:ebay:apis:eBLBaseComponentsPaymentDetailsType

Constant Summary collapse

@@schema_type =
"PaymentDetailsType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["hoursToDeposit", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HoursToDeposit")]],
  ["daysToFullPayment", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DaysToFullPayment")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hoursToDeposit = nil, daysToFullPayment = nil) ⇒ PaymentDetailsType

Returns a new instance of PaymentDetailsType.



18135
18136
18137
18138
18139
# File 'lib/eBay.rb', line 18135

def initialize(hoursToDeposit = nil, daysToFullPayment = nil)
  @hoursToDeposit = hoursToDeposit
  @daysToFullPayment = daysToFullPayment
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



18129
18130
18131
# File 'lib/eBay.rb', line 18129

def __xmlele_any
  @__xmlele_any
end

#daysToFullPaymentObject

Returns the value of attribute daysToFullPayment.



18128
18129
18130
# File 'lib/eBay.rb', line 18128

def daysToFullPayment
  @daysToFullPayment
end

#hoursToDepositObject

Returns the value of attribute hoursToDeposit.



18127
18128
18129
# File 'lib/eBay.rb', line 18127

def hoursToDeposit
  @hoursToDeposit
end

Instance Method Details

#set_any(elements) ⇒ Object



18131
18132
18133
# File 'lib/eBay.rb', line 18131

def set_any(elements)
  @__xmlele_any = elements
end