This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #826 from microsoft/trboehre/teamsmeeting
Teams Meeting API
- Loading branch information
Showing
8 changed files
with
376 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...aries/bot-schema/src/main/java/com/microsoft/bot/schema/teams/MeetingParticipantInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.microsoft.bot.schema.teams; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Teams meeting participant details. | ||
*/ | ||
public class MeetingParticipantInfo { | ||
@JsonProperty(value = "role") | ||
private String role; | ||
|
||
@JsonProperty(value = "inMeeting") | ||
private boolean inMeeting; | ||
|
||
/** | ||
* Gets the participant's role in the meeting. | ||
* @return The participant's role in the meeting. | ||
*/ | ||
public String getRole() { | ||
return role; | ||
} | ||
|
||
/** | ||
* Sets the participant's role in the meeting. | ||
* @param withRole The participant's role in the meeting. | ||
*/ | ||
public void setRole(String withRole) { | ||
role = withRole; | ||
} | ||
|
||
/** | ||
* Gets a value indicating whether the participant is in the meeting or not. | ||
* @return The value indicating if the participant is in the meeting. | ||
*/ | ||
public boolean isInMeeting() { | ||
return inMeeting; | ||
} | ||
|
||
/** | ||
* Sets a value indicating whether the participant is in the meeting or not. | ||
* @param withInMeeting The value indicating if the participant is in the meeting. | ||
*/ | ||
public void setInMeeting(boolean withInMeeting) { | ||
inMeeting = withInMeeting; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.