Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
braintree / paginated_result.py
Size: Mime:
class PaginatedResult(object):
    """
    An instance of this class is returned from paginated operations
    """

    def __init__(self, total_items, page_size, current_page):
        self.total_items = total_items
        self.page_size = page_size
        self.current_page = current_page