Class: CancelOfferType

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

Overview

urn:ebay:apis:eBLBaseComponentsCancelOfferType

Constant Summary collapse

@@schema_type =
"CancelOfferType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["offer", ["OfferType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Offer")]],
  ["explanation", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Explanation")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(offer = nil, explanation = nil) ⇒ CancelOfferType

Returns a new instance of CancelOfferType.



14320
14321
14322
14323
14324
# File 'lib/eBay.rb', line 14320

def initialize(offer = nil, explanation = nil)
  @offer = offer
  @explanation = explanation
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



14314
14315
14316
# File 'lib/eBay.rb', line 14314

def __xmlele_any
  @__xmlele_any
end

#explanationObject

Returns the value of attribute explanation.



14313
14314
14315
# File 'lib/eBay.rb', line 14313

def explanation
  @explanation
end

#offerObject

Returns the value of attribute offer.



14312
14313
14314
# File 'lib/eBay.rb', line 14312

def offer
  @offer
end

Instance Method Details

#set_any(elements) ⇒ Object



14316
14317
14318
# File 'lib/eBay.rb', line 14316

def set_any(elements)
  @__xmlele_any = elements
end