Interface IChatMessageContent
Public interface to define the content of a chat message
Inherited Members
Namespace: PnP.Core.Model.Me
Assembly: PnP.Core.dll
Syntax
public interface IChatMessageContent : IDataModel<IChatMessageContent>, IDataModelParent, IDataModelWithContext, ISupportModules<IChatMessageContent>
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
|