mirror of
https://github.com/LukeHagar/discoursejs.git
synced 2025-12-07 20:37:48 +00:00
42 lines
1.8 KiB
Markdown
42 lines
1.8 KiB
Markdown
# Participants
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { Participants } from "@lukehagar/discoursejs/sdk/models/operations";
|
|
|
|
let value: Participants = {
|
|
admin: false,
|
|
avatarTemplate: "<value>",
|
|
flairBgColor: "<value>",
|
|
flairColor: "<value>",
|
|
flairName: "<value>",
|
|
flairUrl: "<value>",
|
|
id: 455898,
|
|
moderator: false,
|
|
name: "<value>",
|
|
postCount: 501063,
|
|
primaryGroupName: "<value>",
|
|
trustLevel: 642352,
|
|
username: "Garry_Funk",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `admin` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `avatarTemplate` | *string* | :heavy_check_mark: | N/A |
|
|
| `flairBgColor` | *string* | :heavy_check_mark: | N/A |
|
|
| `flairColor` | *string* | :heavy_check_mark: | N/A |
|
|
| `flairGroupId` | *string* | :heavy_minus_sign: | N/A |
|
|
| `flairName` | *string* | :heavy_check_mark: | N/A |
|
|
| `flairUrl` | *string* | :heavy_check_mark: | N/A |
|
|
| `id` | *number* | :heavy_check_mark: | N/A |
|
|
| `moderator` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `name` | *string* | :heavy_check_mark: | N/A |
|
|
| `postCount` | *number* | :heavy_check_mark: | N/A |
|
|
| `primaryGroupName` | *string* | :heavy_check_mark: | N/A |
|
|
| `trustLevel` | *number* | :heavy_check_mark: | N/A |
|
|
| `username` | *string* | :heavy_check_mark: | N/A | |