Provide interfaces to manage Q&A session in Zoom meeting.
More...
#include <ZoomSDKQAController.h>
Inherits NSObject.
Provide interfaces to manage Q&A session in Zoom meeting.
Definition at line 293 of file ZoomSDKQAController.h.
◆ addQuestionWithQuestionContent:isAnonymous:
| - (ZoomSDKError) addQuestionWithQuestionContent: |
|
(NSString *) | content |
| isAnonymous: |
|
(BOOL) | Anonymous |
Attendee to send question.
- Parameters
-
| content | The question content of user send. |
| Anonymous | If YES means can anonymous send question, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ answerQuestionPrivateWithQuestionID:answerContent:
| - (ZoomSDKError) answerQuestionPrivateWithQuestionID: |
|
(NSString *) | questionID |
| answerContent: |
|
(NSString *) | content |
Answer questions in private.
- Parameters
-
| questionID | The answer question ID. |
| content | The answer content. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ answerQuestionPublicWithQuestionID:answerContent:
| - (ZoomSDKError) answerQuestionPublicWithQuestionID: |
|
(NSString *) | questionID |
| answerContent: |
|
(NSString *) | content |
Answer questions in public.
- Parameters
-
| questionID | The answer question ID. |
| content | The answer content. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ commentQuestionWithQuestionID:commentContent:
| - (ZoomSDKError) commentQuestionWithQuestionID: |
|
(NSString *) | questionID |
| commentContent: |
|
(NSString *) | content |
Comment the question.
- Parameters
-
| questionID | The comment question ID. |
| content | The comment on the content. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ deleteAnswer:
Deleted answer.
- Parameters
-
| answerID | The ID of answer. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ deleteQuestion:
Deleted question.
- Parameters
-
| questionID | The ID of question. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ dismissQuestionWithQuestionID:
| - (ZoomSDKError) dismissQuestionWithQuestionID: |
|
(NSString *) | questionID |
|
Dismiss question.
- Parameters
-
| questionID | The dismiss question is; |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ enableAnonymousSendQuestion:
Sets attendee can anonnymous send question.
- Parameters
-
| enable | If set YES means attendee can anonnymous send question, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ enableAskQuestion:
Sets attendee can ask question.
- Parameters
-
| enable | If set YES means attendee can ask question, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ enableQAComment:
Sets attendee comment.
- Parameters
-
| enable | If set YES means attendee can comment, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ enableQAVoteup:
Sets attendee vote.
- Parameters
-
| enable | If set YES means attendee can vote, NO otherwise. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ endLiving:
End answer question on living.
- Parameters
-
| questionId | The ID of question. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ getAllQuestionList
| - (NSArray *_Nullable) getAllQuestionList |
|
|
|
Gets all question list.
- Returns
- If the function succeeds, it returns array of all question. Otherwise, this function fails and returns nil.
◆ getAnswerByAnswerID:
Gets the answer object.
- Parameters
-
| answerID | The ID of answer. |
- Returns
- If the function succeeds, it returns answer object. Otherwise, this function fails and returns nil.
◆ getAnsweredQuestionCount
| - (int) getAnsweredQuestionCount |
|
|
|
Gets answered question count.
- Returns
- The answered question count.
◆ getAnsweredQuestionList
| - (NSArray *_Nullable) getAnsweredQuestionList |
|
|
|
Gets anwered question list.
- Returns
- If the function succeeds, it returns array of answered question. Otherwise, this function fails and returns nil.
◆ getDismissedQuestionCount
| - (int) getDismissedQuestionCount |
|
|
|
Gets dismiss question count.
- Returns
- The dismiss question count.
◆ getDismissedQuestionList
| - (NSArray *_Nullable) getDismissedQuestionList |
|
|
|
Gets dismissed question list.
- Returns
- If the function succeeds, it returns array of dismissed question. Otherwise, this function fails and returns nil.
◆ getMyQuestionCount
| - (int) getMyQuestionCount |
|
|
|
Gets my question count.
- Returns
- The my question count.
◆ getMyQuestionList
| - (NSArray *_Nullable) getMyQuestionList |
|
|
|
Gets my question list.
- Returns
- If the function succeeds, it returns array of my question. Otherwise, this function fails and returns nil.
◆ getOpenQuestionCount
| - (int) getOpenQuestionCount |
|
|
|
Gets open question count.
- Returns
- The open question count.
◆ getOpenQuestionList
| - (NSArray *_Nullable) getOpenQuestionList |
|
|
|
Gets open question list.
- Returns
- If the function succeeds, it returns array of open question. Otherwise, this function fails and returns nil.
◆ getQALegalNoticesExplained
| - (NSString *) getQALegalNoticesExplained |
|
|
|
Gets the QA legal notices explained.
- Returns
- If the function succeeds, it returns the QA legal notices explained. Otherwise, this function fails and returns nil.
◆ getQALegalNoticesPrompt
| - (NSString *) getQALegalNoticesPrompt |
|
|
|
Gets the QA legal notices prompt.
- Returns
- If the function succeeds, it returns the QA legal notices prompt. Otherwise, this function fails and returns nil.
◆ getQuestionByQuestionID:
Gets the question object.
- Parameters
-
| questionID | The ID of question. |
- Returns
- If the function succeeds, it returns question object. Otherwise, this function fails and returns nil.
◆ isAllowAskQuestionAnonymously
| - (BOOL) isAllowAskQuestionAnonymously |
|
|
|
Determines if the ask question anonymous is allowed by the host or co-host.
- Returns
- If return YES if can ask question anonymously. Otherwise, NO.
◆ isAskQuestionEnabled
| - (BOOL) isAskQuestionEnabled |
|
|
|
Determines if the ask question is allowed by the host or co-host.
- Returns
- If return YES if can ask question. Otherwise, NO.
◆ isAttendeeCanViewAllQuestions
| - (BOOL) isAttendeeCanViewAllQuestions |
|
|
|
Determines if the Q&A attendee can view all question.
- Returns
- If return YES if attendee can view all queation. Otherwise, NO.
◆ isQACommentEnabled
| - (BOOL) isQACommentEnabled |
|
|
|
Determines if the Q&A comment is allowed by the host or co-host.
- Returns
- If return YES if can comment. Otherwise, NO.
◆ isQAEnable
Q&A function is available.
- Returns
- If returns YES, Q&A is available. Otherwise, NO.
◆ isQALegalNoticeAvailable
| - (BOOL) isQALegalNoticeAvailable |
|
|
|
Determines whether the legal notice for QA is available.
- Returns
- YES if the legal notice for QA is available. Otherwise, NO.
◆ isQAVoteupEnable
| - (BOOL) isQAVoteupEnable |
|
|
|
Determines if the Q&A vote is allowed by the host or co-host.
- Returns
- If return YES if can vote. Otherwise, NO.
◆ reopenQuestionWithQuestionID:
| - (ZoomSDKError) reopenQuestionWithQuestionID: |
|
(NSString *) | questionID |
|
Reopen the question.
- Parameters
-
| questionID | The reopen question is. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ setAttendeeViewQuestionType:
Sets attendee view question type.
- Parameters
-
| type | The enumeration of AttendeeViewQuestionType,if type is viewType_OnlyAnswered_Question,attendee only view the answered question,if type is viewType_All_Question,attendee can view all question |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ startLiving:
Starts answer question on living.
- Parameters
-
| questionId | The ID of question. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ voteupQuestionWithQuestionID:isEableVokeup:
| - (ZoomSDKError) voteupQuestionWithQuestionID: |
|
(NSString *) | questionID |
| isEableVokeup: |
|
(BOOL) | enable |
Vote the question.
- Parameters
-
| questionID | The vote question ID. |
| enable | If YES, vote the question, Otherwise cancel vote. |
- Returns
- If the function succeeds, it returns ZoomSDKError_Success. Otherwise, this function returns an error.
◆ _delegate
◆ delegate