FeedRoom Model
The FeedRoom class represents a feed room within a community, capturing various attributes and settings. This model is essential for managing and displaying information related to feed rooms. Below are the details of the FeedRoom model:
Properties
| Variable | Type | Description | Optional |
|---|---|---|---|
| id | int | The unique identifier of the feed room. | |
| title | String | The title or name of the feed room. | |
| header | String | The header or introductory text of the feed room. | |
| date | String | The date of the feed room. | |
| dateEpoch | int | The epoch timestamp of the date. | ✔ |
| dateTime | int | The date and time in timestamp format. | ✔ |
| duration | int | The duration of the feed room. | ✔ |
| cardCreationTime | String | The creation time of the feed room card. | ✔ |
| shareLink | String | The shareable link of the feed room. | ✔ |
| thirdPartyUniqueId | String | The unique identifier from a third-party source. | ✔ |
| state | int | The state of the feed room. | |
| isPrivate | bool | Indicates whether the feed room is private. | ✔ |
| isSecret | bool | Indicates whether the feed room is secret. | ✔ |
| isPending | bool | Indicates whether the feed room is pending. | ✔ |
| isPrivateMember | bool | Indicates whether the feed room is private for members. | ✔ |
| isTagged | bool | Indicates whether the feed room is tagged. | ✔ |
| isGuest | bool | Indicates whether the feed room is for guests. | ✔ |
| isPaid | bool | Indicates whether the feed room is paid. | ✔ |
| isPinned | bool | Indicates whether the feed room is pinned. | ✔ |
| isEdited | bool | Indicates whether the feed room has been edited. | ✔ |
| hasBeenNamed | bool | Indicates whether the feed room has been named. | ✔ |
| autoFollowDone | bool | Indicates whether auto-follow has been done for the room. | ✔ |
| includeMembersLater | bool | Indicates whether members will be included later. | ✔ |
| accessWithoutSubscription | bool | Indicates whether access is granted without subscription. | ✔ |
| externalSeen | bool | Indicates external visibility. | ✔ |
| showFollowTelescope | bool | Indicates whether to show follow telescope. | ✔ |
| showFollowAutoTag | bool | Indicates whether to show follow auto-tag. | ✔ |
| memberCanMessage | bool | Indicates whether members can message in the room. | ✔ |
| muteStatus | bool | Indicates the mute status of the feed room. | ✔ |
| followStatus | bool | Indicates the follow status of the feed room. | ✔ |
| communityId | int | The unique identifier of the community associated with the feed room. | |
| communityName | String | The name of the community associated with the feed room. | ✔ |
| chatroomImageUrl | String | The URL of the image associated with the feed room chatroom. | ✔ |
| onlineLinkEnableBefore | int | The timestamp for enabling online link before. | ✔ |
| onlineLinkType | String | The type of online link. | ✔ |
| participantsCount | int | The count of participants in the feed room. | |
| memberId | int | The unique identifier of the member associated with the feed room. | ✔ |
| access | String | The access level for the feed room. | ✔ |
| member | User | The member associated with the feed room. | |
| cohorts | List<dynamic> | List of cohorts associated with the feed room. | ✔ |
| coHosts | List<dynamic> | List of co-hosts associated with the feed room. | ✔ |