Class: ListingTipType

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

Overview

urn:ebay:apis:eBLBaseComponentsListingTipType

Constant Summary collapse

@@schema_type =
"ListingTipType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["listingTipID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ListingTipID")]],
  ["priority", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Priority")]],
  ["message", ["ListingTipMessageType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Message")]],
  ["field", ["ListingTipFieldType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Field")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(listingTipID = nil, priority = nil, message = nil, field = nil) ⇒ ListingTipType

Returns a new instance of ListingTipType.



16761
16762
16763
16764
16765
16766
16767
# File 'lib/eBay.rb', line 16761

def initialize(listingTipID = nil, priority = nil, message = nil, field = nil)
  @listingTipID = listingTipID
  @priority = priority
  @message = message
  @field = field
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



16755
16756
16757
# File 'lib/eBay.rb', line 16755

def __xmlele_any
  @__xmlele_any
end

#fieldObject

Returns the value of attribute field.



16754
16755
16756
# File 'lib/eBay.rb', line 16754

def field
  @field
end

#listingTipIDObject

Returns the value of attribute listingTipID.



16751
16752
16753
# File 'lib/eBay.rb', line 16751

def listingTipID
  @listingTipID
end

#messageObject

Returns the value of attribute message.



16753
16754
16755
# File 'lib/eBay.rb', line 16753

def message
  @message
end

#priorityObject

Returns the value of attribute priority.



16752
16753
16754
# File 'lib/eBay.rb', line 16752

def priority
  @priority
end

Instance Method Details

#set_any(elements) ⇒ Object



16757
16758
16759
# File 'lib/eBay.rb', line 16757

def set_any(elements)
  @__xmlele_any = elements
end