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.



15842
15843
15844
15845
15846
# File 'lib/eBay.rb', line 15842

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.



15836
15837
15838
# File 'lib/eBay.rb', line 15836

def __xmlele_any
  @__xmlele_any
end

#totalNumberOfEntriesObject

Returns the value of attribute totalNumberOfEntries.



15835
15836
15837
# File 'lib/eBay.rb', line 15835

def totalNumberOfEntries
  @totalNumberOfEntries
end

#totalNumberOfPagesObject

Returns the value of attribute totalNumberOfPages.



15834
15835
15836
# File 'lib/eBay.rb', line 15834

def totalNumberOfPages
  @totalNumberOfPages
end

Instance Method Details

#set_any(elements) ⇒ Object



15838
15839
15840
# File 'lib/eBay.rb', line 15838

def set_any(elements)
  @__xmlele_any = elements
end