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