Skip to content

Commit d0db1d4

Browse files
authored
update financials limit property docs. (#70)
1 parent 7cf2bd0 commit d0db1d4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.polygon/rest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27016,12 +27016,12 @@
2701627016
}
2701727017
},
2701827018
{
27019-
"description": "Limit the number of results returned, default is 1 and max is 100.",
27019+
"description": "Limit the number of results returned, default is 10 and max is 100.",
2702027020
"in": "query",
2702127021
"name": "limit",
2702227022
"schema": {
27023-
"default": 1,
27024-
"example": 1,
27023+
"default": 10,
27024+
"example": 10,
2702527025
"maximum": 100,
2702627026
"minimum": 1,
2702727027
"type": "integer"
@@ -27496,7 +27496,7 @@
2749627496
},
2749727497
"x-polygon-paginate": {
2749827498
"limit": {
27499-
"default": 1,
27499+
"default": 10,
2750027500
"max": 100
2750127501
},
2750227502
"sort": {

src/main/kotlin/io/polygon/kotlin/sdk/rest/experimental/Financials.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ data class FinancialsParameters(
101101
val order: String? = null,
102102

103103
/**
104-
* Limit the number of results returned, default is 1 and max is 100.
104+
* Limit the number of results returned, default is 10 and max is 100.
105105
*/
106106
val limit: Int? = null,
107107

0 commit comments

Comments
 (0)