Class: PaginationType

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

Overview

urn:ebay:apis:eBLBaseComponentsPaginationType

Constant Summary collapse

@@schema_type =
"PaginationType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["entriesPerPage", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "EntriesPerPage")]],
  ["pageNumber", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PageNumber")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entriesPerPage = nil, pageNumber = nil) ⇒ PaginationType

Returns a new instance of PaginationType.



2792
2793
2794
2795
# File 'lib/v_paypal/default.rb', line 2792

def initialize(entriesPerPage = nil, pageNumber = nil)
  @entriesPerPage = entriesPerPage
  @pageNumber = pageNumber
end

Instance Attribute Details

#entriesPerPageObject

Returns the value of attribute entriesPerPage.



2789
2790
2791
# File 'lib/v_paypal/default.rb', line 2789

def entriesPerPage
  @entriesPerPage
end

#pageNumberObject

Returns the value of attribute pageNumber.



2790
2791
2792
# File 'lib/v_paypal/default.rb', line 2790

def pageNumber
  @pageNumber
end