Share via


TeamsParticipantChannelAccount Constructors

Definition

Overloads

TeamsParticipantChannelAccount()

Initializes a new instance of the TeamsParticipantChannelAccount class.

TeamsParticipantChannelAccount(String, String, String, String, String, String, String, String, String, Boolean, ConversationAccount)

Initializes a new instance of the TeamsParticipantChannelAccount class.

TeamsParticipantChannelAccount()

Initializes a new instance of the TeamsParticipantChannelAccount class.

public TeamsParticipantChannelAccount ();
Public Sub New ()

Applies to

TeamsParticipantChannelAccount(String, String, String, String, String, String, String, String, String, Boolean, ConversationAccount)

Initializes a new instance of the TeamsParticipantChannelAccount class.

public TeamsParticipantChannelAccount (string id = default, string name = default, string givenName = default, string surname = default, string email = default, string userPrincipalName = default, string tenantId = default, string userRole = default, string meetingRole = default, bool inMeeting = false, Microsoft.Bot.Schema.ConversationAccount conversation = default);
new Microsoft.Bot.Schema.Teams.TeamsParticipantChannelAccount : string * string * string * string * string * string * string * string * string * bool * Microsoft.Bot.Schema.ConversationAccount -> Microsoft.Bot.Schema.Teams.TeamsParticipantChannelAccount
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional givenName As String = Nothing, Optional surname As String = Nothing, Optional email As String = Nothing, Optional userPrincipalName As String = Nothing, Optional tenantId As String = Nothing, Optional userRole As String = Nothing, Optional meetingRole As String = Nothing, Optional inMeeting As Boolean = false, Optional conversation As ConversationAccount = Nothing)

Parameters

id
String

Channel id for the user or bot on this channel. (Example: joe@smith.com, or @joesmith or 123456).

name
String

Display friendly name.

givenName
String

Given name part of the user name.

surname
String

Surname part of the user name.

email
String

Email Id of the user.

userPrincipalName
String

Unique user principal name.

tenantId
String

TenantId of the user.

userRole
String

UserRole of the user.

meetingRole
String

Role of the participant in the current meeting.

inMeeting
Boolean

True, if the participant is in the meeting.

conversation
ConversationAccount

Conversation Account for the meeting.

Applies to