Skip to content

mattermostmodelsposts Post

BigMakCode edited this page Aug 5, 2024 · 1 revision

Post Public class

Description

Post information.

Diagram

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

Members

Properties

Public properties

TypeNameMethods
stringChannelId
Channel identidier where post was created.
get, set
longCreatedAt
The time in milliseconds a post was created.
get, set
longDeletedAt
The time in milliseconds a post was deleted.
get, set
longEditedAt
The time in milliseconds a post was edited.
get, set
IEnumerable<string>FileIdentifiers
Files attached to the post.
get, set
stringHashtags
Post hashtags.
get, set
stringId
Post identifier.
get, set
boolIsPinned
True if post is pinned, otherwise false.
get, set
intLastReplyAt
The time in milliseconds when post was replied.
get, set
stringOriginalIdget, set
stringPendingPostIdget, set
Dictionary<string, object>Props
Post metadata.
get, set
intReplyCount
Reply post count (thread messages count).
get, set
stringRootId
Root post identidier if the post is child of thread.
get, set
stringText
Post text message.
get, set
stringTypeget, set
longUpdatedAt
The time in milliseconds a post was last updated.
get, set
stringUserId
User who created the post.
get, set

Details

Summary

Post information.

Constructors

Post

publicPost()

Properties

Id

publicstringId{get;set;}
Summary

Post identifier.

CreatedAt

publiclongCreatedAt{get;set;}
Summary

The time in milliseconds a post was created.

UpdatedAt

publiclongUpdatedAt{get;set;}
Summary

The time in milliseconds a post was last updated.

EditedAt

publiclongEditedAt{get;set;}
Summary

The time in milliseconds a post was edited.

DeletedAt

publiclongDeletedAt{get;set;}
Summary

The time in milliseconds a post was deleted.

IsPinned

publicboolIsPinned{get;set;}
Summary

True if post is pinned, otherwise false.

UserId

publicstringUserId{get;set;}
Summary

User who created the post.

ChannelId

publicstringChannelId{get;set;}
Summary

Channel identidier where post was created.

RootId

publicstringRootId{get;set;}
Summary

Root post identidier if the post is child of thread.

OriginalId

publicstringOriginalId{get;set;}
Summary

Text

publicstringText{get;set;}
Summary

Post text message.

Type

publicstringType{get;set;}
Summary

Hashtags

publicstringHashtags{get;set;}
Summary

Post hashtags.

PendingPostId

publicstringPendingPostId{get;set;}
Summary

ReplyCount

publicintReplyCount{get;set;}
Summary

Reply post count (thread messages count).

LastReplyAt

publicintLastReplyAt{get;set;}
Summary

The time in milliseconds when post was replied.

FileIdentifiers

publicIEnumerable<string>FileIdentifiers{get;set;}
Summary

Files attached to the post.

Props

publicDictionary<string,object>Props{get;set;}
Summary

Post metadata.

Generated withModularDoc

Clone this wiki locally