You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**is_receiver:**`typing.Optional[bool]` — Set to `true` if the entity needs to receive e-invoices.
5163
+
5164
+
</dd>
5165
+
</dl>
5166
+
5167
+
<dl>
5168
+
<dd>
5169
+
5170
+
**is_sender:**`typing.Optional[bool]` — Set to `true` if the entity needs to send e-invoices. Either `is_sender` or `is_receiver` or both must be `true`.
**is_receiver:**`typing.Optional[bool]` — Set to `true` if the entity needs to receive e-invoices.
5340
+
5341
+
</dd>
5342
+
</dl>
5343
+
5344
+
<dl>
5345
+
<dd>
5346
+
5347
+
**is_sender:**`typing.Optional[bool]` — Set to `true` if the entity needs to send e-invoices. Either `is_sender` or `is_receiver` or both must be `true`.
**limit:**`typing.Optional[int]` — The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
24995
+
**limit:**`typing.Optional[int]`
24996
+
24997
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
24998
+
24999
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
25009
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit`are ignored and inferred from the initial query.
24915
25010
24916
25011
If not specified, the first page of results will be returned.
**limit:**`typing.Optional[int]` — The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
25303
+
**limit:**`typing.Optional[int]`
25304
+
25305
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
25306
+
25307
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
25317
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit`are ignored and inferred from the initial query.
25219
25318
25220
25319
If not specified, the first page of results will be returned.
**limit:**`typing.Optional[int]` — The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
25466
+
**limit:**`typing.Optional[int]`
25467
+
25468
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
25469
+
25470
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
25480
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit`are ignored and inferred from the initial query.
25378
25481
25379
25482
If not specified, the first page of results will be returned.
Copy file name to clipboardExpand all lines: src/monite/accounting/ledger_accounts/client.py
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -44,10 +44,12 @@ def get(
44
44
Sort order (ascending by default). Typically used together with the `sort` parameter.
45
45
46
46
limit : typing.Optional[int]
47
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
47
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
48
+
49
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
48
50
49
51
pagination_token : typing.Optional[str]
50
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
52
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
51
53
52
54
If not specified, the first page of results will be returned.
53
55
@@ -134,10 +136,12 @@ async def get(
134
136
Sort order (ascending by default). Typically used together with the `sort` parameter.
135
137
136
138
limit : typing.Optional[int]
137
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
139
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
140
+
141
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
138
142
139
143
pagination_token : typing.Optional[str]
140
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
144
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
141
145
142
146
If not specified, the first page of results will be returned.
Copy file name to clipboardExpand all lines: src/monite/accounting/ledger_accounts/raw_client.py
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,12 @@ def get(
39
39
Sort order (ascending by default). Typically used together with the `sort` parameter.
40
40
41
41
limit : typing.Optional[int]
42
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
42
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
43
+
44
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
43
45
44
46
pagination_token : typing.Optional[str]
45
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
47
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
46
48
47
49
If not specified, the first page of results will be returned.
48
50
@@ -188,10 +190,12 @@ async def get(
188
190
Sort order (ascending by default). Typically used together with the `sort` parameter.
189
191
190
192
limit : typing.Optional[int]
191
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
193
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
194
+
195
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
192
196
193
197
pagination_token : typing.Optional[str]
194
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
198
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
195
199
196
200
If not specified, the first page of results will be returned.
Copy file name to clipboardExpand all lines: src/monite/accounting/synced_records/client.py
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -59,10 +59,12 @@ def get(
59
59
Sort order (ascending by default). Typically used together with the `sort` parameter.
60
60
61
61
limit : typing.Optional[int]
62
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
62
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
63
+
64
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
63
65
64
66
pagination_token : typing.Optional[str]
65
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
67
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
66
68
67
69
If not specified, the first page of results will be returned.
68
70
@@ -224,10 +226,12 @@ async def get(
224
226
Sort order (ascending by default). Typically used together with the `sort` parameter.
225
227
226
228
limit : typing.Optional[int]
227
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
229
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
230
+
231
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
228
232
229
233
pagination_token : typing.Optional[str]
230
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
234
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
231
235
232
236
If not specified, the first page of results will be returned.
Copy file name to clipboardExpand all lines: src/monite/accounting/synced_records/raw_client.py
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -55,10 +55,12 @@ def get(
55
55
Sort order (ascending by default). Typically used together with the `sort` parameter.
56
56
57
57
limit : typing.Optional[int]
58
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
58
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
59
+
60
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
59
61
60
62
pagination_token : typing.Optional[str]
61
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
63
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
62
64
63
65
If not specified, the first page of results will be returned.
64
66
@@ -308,10 +310,12 @@ async def get(
308
310
Sort order (ascending by default). Typically used together with the `sort` parameter.
309
311
310
312
limit : typing.Optional[int]
311
-
The number of items (0 .. 100) to return in a single page of the response. The response may contain fewer items if it is the last or only page.
313
+
The number of items (0 .. 250) to return in a single page of the response. Default is 100. The response may contain fewer items if it is the last or only page.
314
+
315
+
When using pagination with a non-default `limit`, you must provide the `limit` value alongside `pagination_token` in all subsequent pagination requests. Unlike other query parameters, `limit` is not inferred from `pagination_token`.
312
316
313
317
pagination_token : typing.Optional[str]
314
-
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters are ignored and inferred from the initial query.
318
+
A pagination token obtained from a previous call to this endpoint. Use it to get the next or previous page of results for your initial query. If `pagination_token` is specified, all other query parameters except `limit` are ignored and inferred from the initial query.
315
319
316
320
If not specified, the first page of results will be returned.
0 commit comments