Skip to content

mattermostmodelschannels Channel

BigMakCode edited this page Aug 5, 2024 · 1 revision

Channel Public class

Description

Channel information.

Diagram

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

Members

Properties

Public properties

Type Name Methods
long CreatedAt
The time in milliseconds a channel was created.
get, set
string CreatorUserId
User identifier who created the channel.
get, set
long DeletedAt
The time in milliseconds a channel was deleted.
get, set
string DisplayName
Channel diplay name.
get, set
string Header
Channel header.
get, set
string Id
Channel identifier.
get, set
long LastPostAt
The time in milliseconds of the last post of a channel.
get, set
string Link
Channel link.
get, set
string Name
Channel name.
get, set
string Purpose
Channel purpose.
get, set
string TeamId
Team identifier who has the channel.
get, set
int TotalMessageCount
Total channel messages count.
get, set
string Type
Channel type: O (open) and P (private).
get, set
long UpdatedAt
The time in milliseconds a channel was last updated.
get, set

Details

Summary

Channel information.

Constructors

Channel

public Channel()

Properties

Id

public string Id { get; set; }
Summary

Channel identifier.

CreatedAt

public long CreatedAt { get; set; }
Summary

The time in milliseconds a channel was created.

UpdatedAt

public long UpdatedAt { get; set; }
Summary

The time in milliseconds a channel was last updated.

DeletedAt

public long DeletedAt { get; set; }
Summary

The time in milliseconds a channel was deleted.

TeamId

public string TeamId { get; set; }
Summary

Team identifier who has the channel.

Type

public string Type { get; set; }
Summary

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

DisplayName

public string DisplayName { get; set; }
Summary

Channel diplay name.

Name

public string Name { get; set; }
Summary

Channel name.

Header

public string Header { get; set; }
Summary

Channel header.

Purpose

public string Purpose { get; set; }
Summary

Channel purpose.

LastPostAt

public long LastPostAt { get; set; }
Summary

The time in milliseconds of the last post of a channel.

TotalMessageCount

public int TotalMessageCount { get; set; }
Summary

Total channel messages count.

CreatorUserId

public string CreatorUserId { get; set; }
Summary

User identifier who created the channel.

Link

public string Link { get; set; }
Summary

Channel link.

Generated with ModularDoc

Clone this wiki locally