TeamDetails Class

  • java.lang.Object
    • com.microsoft.bot.schema.teams.TeamDetails

public class TeamDetails

Details related to a team.

Constructor Summary

Constructor Description
TeamDetails()

Method Summary

Modifier and Type Method and Description
java.lang.String getAadGroupId()

Gets Azure Active Directory (AAD) Group Id for the team.

int getChannelCount()

Gets the number of channels in the team.

java.lang.String getId()

Gets unique identifier representing a team.

int getMemberCount()

Gets the number of members in the team.

java.lang.String getName()

Gets name of team.

void setAadGroupId(String withAadGroupId)

Sets Azure Active Directory (AAD) Group Id for the team.

void setChannelCount(int withChannelCount)

Sets the number of channels in the team.

void setId(String withId)

Sets unique identifier representing a team.

void setMemberCount(int withMemberCount)

Sets the number of members in the team.

void setName(String withName)

Sets name of team.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

TeamDetails

public TeamDetails()

Method Details

getAadGroupId

public String getAadGroupId()

Gets Azure Active Directory (AAD) Group Id for the team.

Returns:

The Azure group id.

getChannelCount

public int getChannelCount()

Gets the number of channels in the team.

Returns:

The number of channels.

getId

public String getId()

Gets unique identifier representing a team.

Returns:

The teams id.

getMemberCount

public int getMemberCount()

Gets the number of members in the team.

Returns:

The number of memebers.

getName

public String getName()

Gets name of team.

Returns:

The team name.

setAadGroupId

public void setAadGroupId(String withAadGroupId)

Sets Azure Active Directory (AAD) Group Id for the team.

Parameters:

withAadGroupId - The Azure group id.

setChannelCount

public void setChannelCount(int withChannelCount)

Sets the number of channels in the team.

Parameters:

withChannelCount - The number of channels.

setId

public void setId(String withId)

Sets unique identifier representing a team.

Parameters:

withId - The teams id.

setMemberCount

public void setMemberCount(int withMemberCount)

Sets the number of members in the team.

Parameters:

withMemberCount - The number of members.

setName

public void setName(String withName)

Sets name of team.

Parameters:

withName - The team name.

Applies to