-
-
Notifications
You must be signed in to change notification settings - Fork 9
mattermostmodelsposts Post
BigMakCode edited this page Aug 5, 2024
·
1 revision
Post information.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Mattermost.Models.Posts
Mattermost.Models.Posts.Post[[Post]]
end
| Type | Name | Methods |
|---|---|---|
string |
ChannelIdChannel identidier where post was created. |
get, set |
long |
CreatedAtThe time in milliseconds a post was created. |
get, set |
long |
DeletedAtThe time in milliseconds a post was deleted. |
get, set |
long |
EditedAtThe time in milliseconds a post was edited. |
get, set |
IEnumerable<string> |
FileIdentifiersFiles attached to the post. |
get, set |
string |
HashtagsPost hashtags. |
get, set |
string |
IdPost identifier. |
get, set |
bool |
IsPinnedTrue if post is pinned, otherwise false. |
get, set |
int |
LastReplyAtThe time in milliseconds when post was replied. |
get, set |
string |
OriginalId |
get, set |
string |
PendingPostId |
get, set |
Dictionary<string, object> |
PropsPost metadata. |
get, set |
int |
ReplyCountReply post count (thread messages count). |
get, set |
string |
RootIdRoot post identidier if the post is child of thread. |
get, set |
string |
TextPost text message. |
get, set |
string |
Type |
get, set |
long |
UpdatedAtThe time in milliseconds a post was last updated. |
get, set |
string |
UserIdUser who created the post. |
get, set |
Post information.
public Post()public string Id { get; set; }Post identifier.
public long CreatedAt { get; set; }The time in milliseconds a post was created.
public long UpdatedAt { get; set; }The time in milliseconds a post was last updated.
public long EditedAt { get; set; }The time in milliseconds a post was edited.
public long DeletedAt { get; set; }The time in milliseconds a post was deleted.
public bool IsPinned { get; set; }True if post is pinned, otherwise false.
public string UserId { get; set; }User who created the post.
public string ChannelId { get; set; }Channel identidier where post was created.
public string RootId { get; set; }Root post identidier if the post is child of thread.
public string OriginalId { get; set; }public string Text { get; set; }Post text message.
public string Type { get; set; }public string Hashtags { get; set; }Post hashtags.
public string PendingPostId { get; set; }public int ReplyCount { get; set; }Reply post count (thread messages count).
public int LastReplyAt { get; set; }The time in milliseconds when post was replied.
public IEnumerable<string> FileIdentifiers { get; set; }Files attached to the post.
public Dictionary<string, object> Props { get; set; }Post metadata.
Generated with ModularDoc