class PagerInfo():
    def __init__(self, startIndex = -1, pageSize = -1, totalRecordCount = -1):
        self.startIndex = startIndex
        self.pageSize = pageSize
        self.totalRecordCount = totalRecordCount
        
    def serialize(self):
        return {
           'startIndex': self.startIndex,
           'pageSize': self.pageSize,
           'totalRecordCount': self.totalRecordCount,
           }        