Class: PaginationResultType

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

Overview

urn:ebay:apis:eBLBaseComponentsPaginationResultType

Constant Summary collapse

@@schema_type =
"PaginationResultType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["totalNumberOfPages", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalNumberOfPages")]],
  ["totalNumberOfEntries", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalNumberOfEntries")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalNumberOfPages = nil, totalNumberOfEntries = nil) ⇒ PaginationResultType

Returns a new instance of PaginationResultType.



20555
20556
20557
20558
20559
# File 'lib/eBay.rb', line 20555

def initialize(totalNumberOfPages = nil, totalNumberOfEntries = nil)
  @totalNumberOfPages = totalNumberOfPages
  @totalNumberOfEntries = totalNumberOfEntries
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



20549
20550
20551
# File 'lib/eBay.rb', line 20549

def __xmlele_any
  @__xmlele_any
end

#totalNumberOfEntriesObject

Returns the value of attribute totalNumberOfEntries.



20548
20549
20550
# File 'lib/eBay.rb', line 20548

def totalNumberOfEntries
  @totalNumberOfEntries
end

#totalNumberOfPagesObject

Returns the value of attribute totalNumberOfPages.



20547
20548
20549
# File 'lib/eBay.rb', line 20547

def totalNumberOfPages
  @totalNumberOfPages
end

Instance Method Details

#set_any(elements) ⇒ Object



20551
20552
20553
# File 'lib/eBay.rb', line 20551

def set_any(elements)
  @__xmlele_any = elements
end