Files
discoursejs/docs/sdk/models/operations/groupedsearchresult.md

41 lines
2.0 KiB
Markdown

# GroupedSearchResult
## Example Usage
```typescript
import { GroupedSearchResult } from "@lukehagar/discoursejs/sdk/models/operations";
let value: GroupedSearchResult = {
canCreateTopic: false,
categoryIds: ["<value>"],
error: "<value>",
groupIds: ["<value>"],
moreCategories: "<value>",
moreFullPageResults: "<value>",
morePosts: "<value>",
moreUsers: "<value>",
postIds: ["<value>"],
searchLogId: 357347,
tagIds: ["<value>"],
term: "<value>",
userIds: ["<value>"],
};
```
## Fields
| Field | Type | Required | Description |
| --------------------- | --------------------- | --------------------- | --------------------- |
| `canCreateTopic` | *boolean* | :heavy_check_mark: | N/A |
| `categoryIds` | *any*[] | :heavy_check_mark: | N/A |
| `error` | *string* | :heavy_check_mark: | N/A |
| `groupIds` | *any*[] | :heavy_check_mark: | N/A |
| `moreCategories` | *string* | :heavy_check_mark: | N/A |
| `moreFullPageResults` | *string* | :heavy_check_mark: | N/A |
| `morePosts` | *string* | :heavy_check_mark: | N/A |
| `moreUsers` | *string* | :heavy_check_mark: | N/A |
| `postIds` | *any*[] | :heavy_check_mark: | N/A |
| `searchLogId` | *number* | :heavy_check_mark: | N/A |
| `tagIds` | *any*[] | :heavy_check_mark: | N/A |
| `term` | *string* | :heavy_check_mark: | N/A |
| `userIds` | *any*[] | :heavy_check_mark: | N/A |