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.



19024
19025
19026
19027
19028
19029
19030
# File 'lib/eBay.rb', line 19024

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.



19018
19019
19020
# File 'lib/eBay.rb', line 19018

def __xmlele_any
  @__xmlele_any
end

#fieldObject

Returns the value of attribute field.



19017
19018
19019
# File 'lib/eBay.rb', line 19017

def field
  @field
end

#listingTipIDObject

Returns the value of attribute listingTipID.



19014
19015
19016
# File 'lib/eBay.rb', line 19014

def listingTipID
  @listingTipID
end

#messageObject

Returns the value of attribute message.



19016
19017
19018
# File 'lib/eBay.rb', line 19016

def message
  @message
end

#priorityObject

Returns the value of attribute priority.



19015
19016
19017
# File 'lib/eBay.rb', line 19015

def priority
  @priority
end

Instance Method Details

#set_any(elements) ⇒ Object



19020
19021
19022
# File 'lib/eBay.rb', line 19020

def set_any(elements)
  @__xmlele_any = elements
end