-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodelsresponseswebsocket PostInfo
BigMakCode edited this page Aug 5, 2024
·
1 revision
Base post information class.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Responses.Websocket
Mattermost.Models.Responses.Websocket.PostInfo[[PostInfo]]
end
| Type | Name | Methods |
|---|---|---|
string |
ChannelDisplayNameChannel display name. |
get, set |
string |
ChannelNameChannel name. |
get, set |
string |
ChannelTypeChannel type: O (open) or P (private). |
get, set |
string |
MentionsPost mentions. |
get, set |
string |
PostPost raw JSON data. |
get, set |
string |
SenderNamePost sender name. |
get, set |
bool |
SetOnlineSet online when post created. |
get, set |
string |
TeamIdTeam identifier of channel. |
get, set |
| Returns | Name |
|---|---|
PostUpdateInfo |
ToPostUpdateInfo() |
Base post information class.
public PostInfo()internal PostUpdateInfo ToPostUpdateInfo()public string ChannelDisplayName { get; set; }Channel display name.
public string ChannelName { get; set; }Channel name.
public string ChannelType { get; set; }Channel type: O (open) or P (private).
public string Mentions { get; set; }Post mentions.
public string Post { get; set; }Post raw JSON data.
public string SenderName { get; set; }Post sender name.
public string TeamId { get; set; }Team identifier of channel.
public bool SetOnline { get; set; }Set online when post created.
Generated with ModularDoc