pagination offset bug fix
This commit is contained in:
@@ -3,7 +3,7 @@ package document_scraper
|
||||
// DocumentScraperListRequest represents the request to list tenders pending document scraping
|
||||
type DocumentScraperListRequest struct {
|
||||
Limit int `query:"limit" valid:"optional,range(1|100)" default:"20"`
|
||||
Offset int `query:"offset" valid:"optional,min(0)" default:"0"`
|
||||
Offset int `query:"offset" valid:"optional,range(0|1000000)" default:"0"`
|
||||
}
|
||||
|
||||
// DocumentScraperGetRequest represents the request to get a specific tender by notice publication ID
|
||||
|
||||
Reference in New Issue
Block a user