Interface ITeamTag
Represents a tag associated with a team.
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface ITeamTag : IDataModel<ITeamTag>, IDataModelParent, IDataModelWithContext, ISupportModules<ITeamTag>, IDataModelDelete, IDataModelUpdate
Properties
Description
Tag description as it will appear to the user in Microsoft Teams.
Declaration
string Description { get; }
Property Value
System.String
|
DisplayName
Name of the tag. The value can't be more than 40 characters.
Declaration
string DisplayName { get; set; }
Property Value
System.String
|
Id
ID of the tag.
Declaration
string Id { get; }
Property Value
System.String
|
MemberCount
The number of users assigned to the tag.
Declaration
int MemberCount { get; }
Property Value
System.Int32
|
Members
Members that are associated with the Teams tag
Declaration
ITeamTagMemberCollection Members { get; set; }
Property Value
ITeamTagMemberCollection
|
TagType
Tag description as it will appear to the user in Microsoft Teams.
Declaration
TeamTagType TagType { get; set; }
Property Value
TeamTagType
|
TeamId
ID of the team in which the tag is defined.
Declaration
string TeamId { get; }
Property Value
System.String
|