Interface IChat
Defines a chat
Inherited Members
Namespace: PnP.Core.Model.Me
Assembly: PnP.Core.dll
Syntax
public interface IChat : IDataModel<IChat>, IDataModelParent, IDataModelWithContext, ISupportModules<IChat>, IDataModelGet<IChat>, IDataModelLoad<IChat>, IDataModelUpdate, IQueryableDataModel
Properties
ChatType
Type of the chat
Declaration
string ChatType { get; }
Property Value
System.String
|
CreatedDateTime
Created time of the chat
Declaration
DateTime CreatedDateTime { get; }
Property Value
DateTime
|
Id
The unique Id of the chat conversation
Declaration
string Id { get; }
Property Value
System.String
|
LastUpdatedDateTime
Last time the chat has been updated
Declaration
DateTime LastUpdatedDateTime { get; }
Property Value
DateTime
|
Members
Members in this Team Chat
Implements
See Requesting model collections
and IQueryable performance considerations to learn more.
Declaration
IAadUserConversationMemberCollection Members { get; }
Property Value
IAadUserConversationMemberCollection
|
Messages
Messages in this Team Chat
Implements
See Requesting model collections
and IQueryable performance considerations to learn more.
Declaration
IChatMessageCollection Messages { get; }
Property Value
IChatMessageCollection
|
TenantId
Azure AD Tenant id for the tenant hosting the chat
Declaration
Guid TenantId { get; }
Property Value
Guid
|
Topic
Topic of the chat
Declaration
string Topic { get; }
Property Value
System.String
|
WebUrl
Teams Web url for the chat
Declaration
string WebUrl { get; }
Property Value
System.String
|