Interface ITeamChatMessageContent
Public interface to define the content of a chat message
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface ITeamChatMessageContent : IDataModel<ITeamChatMessageContent>, IDataModelParent, IDataModelWithContext, ISupportModules<ITeamChatMessageContent>
Properties
Content
The content of the item.
Declaration
string Content { get; set; }
Property Value
System.String
|
ContentType
The type of the content. Possible values are text and html.
Declaration
ChatMessageContentType ContentType { get; set; }
Property Value
ChatMessageContentType
|