Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
IQAItemInfo.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
5public interface IQAItemInfo {
6
12 String getQuestionID();
13
19 @Deprecated
20 int getState();
21
28
34 String getText();
35
36
42 String getSenderName();
43
49 boolean isAnonymous();
50
57
64
71
77 boolean hasLiveAnswers();
78
84 boolean hasTextAnswers();
85
91 boolean isMySelfUpvoted();
92
99
106
113
119 boolean isSenderMyself();
120
126 List<IAnswerItem> getAnswerList();
127}
boolean isMySelfUpvoted()
Query if myself has upvote the question.
boolean isMarkedAsAnswered()
Query is the question marked as answered.
boolean isLiveAnswering()
Query the question is live answering.
String getQuestionID()
Get question id.
String getLiveAnswerName()
Get the name of live answering.
boolean hasTextAnswers()
Query the question has text answers.
boolean amILiveAnswering()
Query myself is the live answer.
long getTimeStamp()
Get question add timestamp.
boolean isMarkedAsDismissed()
Query is the question marked as dismissed.
boolean isSenderMyself()
Query if the question send by myself.
String getText()
Get question content.
int getState()
Get question status.
boolean hasLiveAnswers()
Query the question has live answers.
int getUpvoteNum()
Get upvote number.
String getSenderName()
Get the question sender user name.
List< IAnswerItem > getAnswerList()
Get the answer information list.
boolean isAnonymous()
Query is the question anonymous.