Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 8
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.
publicPost()publicstringId{get;set;}Post identifier.
publiclongCreatedAt{get;set;}The time in milliseconds a post was created.
publiclongUpdatedAt{get;set;}The time in milliseconds a post was last updated.
publiclongEditedAt{get;set;}The time in milliseconds a post was edited.
publiclongDeletedAt{get;set;}The time in milliseconds a post was deleted.
publicboolIsPinned{get;set;}True if post is pinned, otherwise false.
publicstringUserId{get;set;}User who created the post.
publicstringChannelId{get;set;}Channel identidier where post was created.
publicstringRootId{get;set;}Root post identidier if the post is child of thread.
publicstringOriginalId{get;set;}publicstringText{get;set;}Post text message.
publicstringType{get;set;}publicstringHashtags{get;set;}Post hashtags.
publicstringPendingPostId{get;set;}publicintReplyCount{get;set;}Reply post count (thread messages count).
publicintLastReplyAt{get;set;}The time in milliseconds when post was replied.
publicIEnumerable<string>FileIdentifiers{get;set;}Files attached to the post.
publicDictionary<string,object>Props{get;set;}Post metadata.
Generated withModularDoc