@@ -1749,6 +1749,8 @@ def list_applicants(self, **kwargs):
17491749
17501750 :param callback function: The callback function
17511751 for asynchronous request. (optional)
1752+ :param str page: The page to return. Defaults to the first page if omitted. The first page is `page=1`
1753+ :param str per_page: The number of objects per page. Defaults to 20 if omitted.
17521754 :return: ApplicantsList
17531755 If the method is called asynchronously,
17541756 returns the request thread.
@@ -1775,12 +1777,14 @@ def list_applicants_with_http_info(self, **kwargs):
17751777
17761778 :param callback function: The callback function
17771779 for asynchronous request. (optional)
1780+ :param str page: The page to return. Defaults to the first page if omitted. The first page is `page=1`
1781+ :param str per_page: The number of objects per page. Defaults to 20 if omitted.
17781782 :return: ApplicantsList
17791783 If the method is called asynchronously,
17801784 returns the request thread.
17811785 """
17821786
1783- all_params = []
1787+ all_params = ['page' , 'per_page' ]
17841788 all_params .append ('callback' )
17851789 all_params .append ('_return_http_data_only' )
17861790 all_params .append ('_preload_content' )
@@ -1802,6 +1806,10 @@ def list_applicants_with_http_info(self, **kwargs):
18021806 path_params = {}
18031807
18041808 query_params = {}
1809+ if 'page' in params :
1810+ query_params ['page' ] = params ['page' ]
1811+ if 'per_page' in params :
1812+ query_params ['per_page' ] = params ['per_page' ]
18051813
18061814 header_params = {}
18071815
@@ -1853,6 +1861,8 @@ def list_checks(self, applicant_id, **kwargs):
18531861 :param callback function: The callback function
18541862 for asynchronous request. (optional)
18551863 :param str applicant_id: (required)
1864+ :param str page: The page to return. Defaults to the first page if omitted. The first page is `page=1`
1865+ :param str per_page: The number of objects per page. Defaults to 20 if omitted.
18561866 :return: ChecksList
18571867 If the method is called asynchronously,
18581868 returns the request thread.
@@ -1880,12 +1890,14 @@ def list_checks_with_http_info(self, applicant_id, **kwargs):
18801890 :param callback function: The callback function
18811891 for asynchronous request. (optional)
18821892 :param str applicant_id: (required)
1893+ :param str page: The page to return. Defaults to the first page if omitted. The first page is `page=1`
1894+ :param str per_page: The number of objects per page. Defaults to 20 if omitted.
18831895 :return: ChecksList
18841896 If the method is called asynchronously,
18851897 returns the request thread.
18861898 """
18871899
1888- all_params = ['applicant_id' ]
1900+ all_params = ['applicant_id' , 'page' , 'per_page' ]
18891901 all_params .append ('callback' )
18901902 all_params .append ('_return_http_data_only' )
18911903 all_params .append ('_preload_content' )
@@ -1912,6 +1924,10 @@ def list_checks_with_http_info(self, applicant_id, **kwargs):
19121924 path_params ['applicant_id' ] = params ['applicant_id' ]
19131925
19141926 query_params = {}
1927+ if 'page' in params :
1928+ query_params ['page' ] = params ['page' ]
1929+ if 'per_page' in params :
1930+ query_params ['per_page' ] = params ['per_page' ]
19151931
19161932 header_params = {}
19171933
0 commit comments