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.



23510
23511
23512
23513
23514
23515
# File 'lib/eBay.rb', line 23510

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.



23504
23505
23506
# File 'lib/eBay.rb', line 23504

def __xmlele_any
  @__xmlele_any
end

#activeObject

Returns the value of attribute active.



23503
23504
23505
# File 'lib/eBay.rb', line 23503

def active
  @active
end

#eIASTokenObject

Returns the value of attribute eIASToken.



23501
23502
23503
# File 'lib/eBay.rb', line 23501

def eIASToken
  @eIASToken
end

#siteIDObject

Returns the value of attribute siteID.



23502
23503
23504
# File 'lib/eBay.rb', line 23502

def siteID
  @siteID
end

Instance Method Details

#set_any(elements) ⇒ Object



23506
23507
23508
# File 'lib/eBay.rb', line 23506

def set_any(elements)
  @__xmlele_any = elements
end