Table of Contents

Interface ITeam

Namespace
Discord
Assembly
Discord.Net.Core.dll

Represents a Discord Team.

public interface ITeam

Properties

IconUrl

Gets the team icon url.

string IconUrl { get; }

Property Value

string

Id

Gets the team unique identifier.

ulong Id { get; }

Property Value

ulong

Name

Gets the name of this team.

string Name { get; }

Property Value

string

OwnerUserId

Gets the user identifier that owns this team.

ulong OwnerUserId { get; }

Property Value

ulong

TeamMembers

Gets the members of this team.

IReadOnlyList<ITeamMember> TeamMembers { get; }

Property Value

IReadOnlyList<ITeamMember>