Skip to content

mattermostmodelschannels ChannelUserInfo

BigMakCode edited this page Aug 5, 2024 · 1 revision

ChannelUserInfo Public class

Description

Channel user information.

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph Mattermost.Models.Channels
  Mattermost.Models.Channels.ChannelUserInfo[[ChannelUserInfo]]
  end
Loading

Members

Properties

Public properties

Type Name Methods
string ChannelId
Channel identifier.
get, set
int LastViewedAt
The time in milliseconds the channel was last viewed by the user.
get, set
int MentionCount
Mentions count in channel by user.
get, set
int MessageCount
How many messages are posted in the channel by user.
get, set
NotifyProps NotifyProps
Notify props for user in channel.
get, set
string Roles
User roles in channel.
get, set
long UpdatedAt
Last update time in milliseconds.
get, set
string UserId
User identifier.
get, set

Details

Summary

Channel user information.

Constructors

ChannelUserInfo

public ChannelUserInfo()

Properties

ChannelId

public string ChannelId { get; set; }
Summary

Channel identifier.

UserId

public string UserId { get; set; }
Summary

User identifier.

Roles

public string Roles { get; set; }
Summary

User roles in channel.

LastViewedAt

public int LastViewedAt { get; set; }
Summary

The time in milliseconds the channel was last viewed by the user.

MessageCount

public int MessageCount { get; set; }
Summary

How many messages are posted in the channel by user.

MentionCount

public int MentionCount { get; set; }
Summary

Mentions count in channel by user.

NotifyProps

public NotifyProps NotifyProps { get; set; }
Summary

Notify props for user in channel.

UpdatedAt

public long UpdatedAt { get; set; }
Summary

Last update time in milliseconds.

Generated with ModularDoc

Clone this wiki locally