-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodelschannels Channel
BigMakCode edited this page Aug 5, 2024
·
1 revision
Channel information.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Channels
Mattermost.Models.Channels.Channel[[Channel]]
end
| Type | Name | Methods |
|---|---|---|
long |
CreatedAtThe time in milliseconds a channel was created. |
get, set |
string |
CreatorUserIdUser identifier who created the channel. |
get, set |
long |
DeletedAtThe time in milliseconds a channel was deleted. |
get, set |
string |
DisplayNameChannel diplay name. |
get, set |
string |
HeaderChannel header. |
get, set |
string |
IdChannel identifier. |
get, set |
long |
LastPostAtThe time in milliseconds of the last post of a channel. |
get, set |
string |
LinkChannel link. |
get, set |
string |
NameChannel name. |
get, set |
string |
PurposeChannel purpose. |
get, set |
string |
TeamIdTeam identifier who has the channel. |
get, set |
int |
TotalMessageCountTotal channel messages count. |
get, set |
string |
TypeChannel type: O (open) and P (private). |
get, set |
long |
UpdatedAtThe time in milliseconds a channel was last updated. |
get, set |
Channel information.
public Channel()public string Id { get; set; }Channel identifier.
public long CreatedAt { get; set; }The time in milliseconds a channel was created.
public long UpdatedAt { get; set; }The time in milliseconds a channel was last updated.
public long DeletedAt { get; set; }The time in milliseconds a channel was deleted.
public string TeamId { get; set; }Team identifier who has the channel.
public string Type { get; set; }Channel type: O (open) and P (private).
public string DisplayName { get; set; }Channel diplay name.
public string Name { get; set; }Channel name.
public string Header { get; set; }Channel header.
public string Purpose { get; set; }Channel purpose.
public long LastPostAt { get; set; }The time in milliseconds of the last post of a channel.
public int TotalMessageCount { get; set; }Total channel messages count.
public string CreatorUserId { get; set; }User identifier who created the channel.
public string Link { get; set; }Channel link.
Generated with ModularDoc