Skip to content

mattermostmodelsresponseswebsocket PostInfo

BigMakCode edited this page Aug 5, 2024 · 1 revision

PostInfo Public class

Description

Base post information class.

Diagram

  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
Loading

Members

Properties

Public properties

Type Name Methods
string ChannelDisplayName
Channel display name.
get, set
string ChannelName
Channel name.
get, set
string ChannelType
Channel type: O (open) or P (private).
get, set
string Mentions
Post mentions.
get, set
string Post
Post raw JSON data.
get, set
string SenderName
Post sender name.
get, set
bool SetOnline
Set online when post created.
get, set
string TeamId
Team identifier of channel.
get, set

Methods

Internal methods

Returns Name
PostUpdateInfo ToPostUpdateInfo()

Details

Summary

Base post information class.

Constructors

PostInfo

public PostInfo()

Methods

ToPostUpdateInfo

internal PostUpdateInfo ToPostUpdateInfo()

Properties

ChannelDisplayName

public string ChannelDisplayName { get; set; }
Summary

Channel display name.

ChannelName

public string ChannelName { get; set; }
Summary

Channel name.

ChannelType

public string ChannelType { get; set; }
Summary

Channel type: O (open) or P (private).

Mentions

public string Mentions { get; set; }
Summary

Post mentions.

Post

public string Post { get; set; }
Summary

Post raw JSON data.

SenderName

public string SenderName { get; set; }
Summary

Post sender name.

TeamId

public string TeamId { get; set; }
Summary

Team identifier of channel.

SetOnline

public bool SetOnline { get; set; }
Summary

Set online when post created.

Generated with ModularDoc

Clone this wiki locally