-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodelschannels ChannelUserInfo
BigMakCode edited this page Aug 5, 2024
·
1 revision
Channel user information.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Channels
Mattermost.Models.Channels.ChannelUserInfo[[ChannelUserInfo]]
end
| Type | Name | Methods |
|---|---|---|
string |
ChannelIdChannel identifier. |
get, set |
int |
LastViewedAtThe time in milliseconds the channel was last viewed by the user. |
get, set |
int |
MentionCountMentions count in channel by user. |
get, set |
int |
MessageCountHow many messages are posted in the channel by user. |
get, set |
NotifyProps |
NotifyPropsNotify props for user in channel. |
get, set |
string |
RolesUser roles in channel. |
get, set |
long |
UpdatedAtLast update time in milliseconds. |
get, set |
string |
UserIdUser identifier. |
get, set |
Channel user information.
public ChannelUserInfo()public string ChannelId { get; set; }Channel identifier.
public string UserId { get; set; }User identifier.
public string Roles { get; set; }User roles in channel.
public int LastViewedAt { get; set; }The time in milliseconds the channel was last viewed by the user.
public int MessageCount { get; set; }How many messages are posted in the channel by user.
public int MentionCount { get; set; }Mentions count in channel by user.
public NotifyProps NotifyProps { get; set; }Notify props for user in channel.
public long UpdatedAt { get; set; }Last update time in milliseconds.
Generated with ModularDoc