Class: SubscriptionType

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

Overview

urn:ebay:apis:eBLBaseComponentsSubscriptionType

Constant Summary collapse

@@schema_type =
"SubscriptionType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["eIASToken", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "EIASToken")]],
  ["siteID", ["SiteCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SiteID")]],
  ["active", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Active")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(eIASToken = nil, siteID = nil, active = nil) ⇒ SubscriptionType

Returns a new instance of SubscriptionType.



20849
20850
20851
20852
20853
20854
# File 'lib/eBay.rb', line 20849

def initialize(eIASToken = nil, siteID = nil, active = nil)
  @eIASToken = eIASToken
  @siteID = siteID
  @active = active
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



20843
20844
20845
# File 'lib/eBay.rb', line 20843

def __xmlele_any
  @__xmlele_any
end

#activeObject

Returns the value of attribute active.



20842
20843
20844
# File 'lib/eBay.rb', line 20842

def active
  @active
end

#eIASTokenObject

Returns the value of attribute eIASToken.



20840
20841
20842
# File 'lib/eBay.rb', line 20840

def eIASToken
  @eIASToken
end

#siteIDObject

Returns the value of attribute siteID.



20841
20842
20843
# File 'lib/eBay.rb', line 20841

def siteID
  @siteID
end

Instance Method Details

#set_any(elements) ⇒ Object



20845
20846
20847
# File 'lib/eBay.rb', line 20845

def set_any(elements)
  @__xmlele_any = elements
end