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.



18085
18086
18087
18088
18089
# File 'lib/eBay.rb', line 18085

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.



18079
18080
18081
# File 'lib/eBay.rb', line 18079

def __xmlele_any
  @__xmlele_any
end

#totalNumberOfEntriesObject

Returns the value of attribute totalNumberOfEntries.



18078
18079
18080
# File 'lib/eBay.rb', line 18078

def totalNumberOfEntries
  @totalNumberOfEntries
end

#totalNumberOfPagesObject

Returns the value of attribute totalNumberOfPages.



18077
18078
18079
# File 'lib/eBay.rb', line 18077

def totalNumberOfPages
  @totalNumberOfPages
end

Instance Method Details

#set_any(elements) ⇒ Object



18081
18082
18083
# File 'lib/eBay.rb', line 18081

def set_any(elements)
  @__xmlele_any = elements
end