| 1534 | ) |
| 1535 | |
| 1536 | type BetaChatKitThreadListItemsParams struct { |
| 1537 | // List items created after this thread item ID. Defaults to null for the first |
| 1538 | // page. |
| 1539 | After param.Opt[string] `query:"after,omitzero" json:"-"` |
| 1540 | // List items created before this thread item ID. Defaults to null for the newest |
| 1541 | // results. |
| 1542 | Before param.Opt[string] `query:"before,omitzero" json:"-"` |
| 1543 | // Maximum number of thread items to return. Defaults to 20. |
| 1544 | Limit param.Opt[int64] `query:"limit,omitzero" json:"-"` |
| 1545 | // Sort order for results by creation time. Defaults to `desc`. |
| 1546 | // |
| 1547 | // Any of "asc", "desc". |
| 1548 | Order BetaChatKitThreadListItemsParamsOrder `query:"order,omitzero" json:"-"` |
| 1549 | paramObj |
| 1550 | } |
| 1551 | |
| 1552 | // URLQuery serializes [BetaChatKitThreadListItemsParams]'s query parameters as |
| 1553 | // `url.Values`. |
nothing calls this directly
no outgoing calls
no test coverage detected