|
Meeting SDK for macOS API Reference
|
Provide interfaces to manage Q&A session in Zoom meeting. More...
#include <ZoomSDKQAController.h>
Inherits NSObject.
Instance Methods | |
| (BOOL) | - isQAEnable |
| Q&A function is available. | |
| (NSArray *_Nullable) | - getAllQuestionList |
| Gets all question list. | |
| (NSArray *_Nullable) | - getMyQuestionList |
| Gets my question list. | |
| (NSArray *_Nullable) | - getOpenQuestionList |
| Gets open question list. | |
| (NSArray *_Nullable) | - getDismissedQuestionList |
| Gets dismissed question list. | |
| (NSArray *_Nullable) | - getAnsweredQuestionList |
| Gets anwered question list. | |
| (ZoomSDKError) | - addQuestionWithQuestionContent:isAnonymous: |
| Attendee to send question. | |
| (ZoomSDKError) | - answerQuestionPrivateWithQuestionID:answerContent: |
| Answer questions in private. | |
| (ZoomSDKError) | - answerQuestionPublicWithQuestionID:answerContent: |
| Answer questions in public. | |
| (ZoomSDKError) | - dismissQuestionWithQuestionID: |
| Dismiss question. | |
| (ZoomSDKError) | - reopenQuestionWithQuestionID: |
| Reopen the question. | |
| (ZoomSDKError) | - commentQuestionWithQuestionID:commentContent: |
| Comment the question. | |
| (ZoomSDKError) | - voteupQuestionWithQuestionID:isEableVokeup: |
| Vote the question. | |
| (ZoomSDKError) | - enableAskQuestion: |
| Sets attendee can ask question. | |
| (ZoomSDKError) | - enableAnonymousSendQuestion: |
| Sets attendee can anonnymous send question. | |
| (ZoomSDKError) | - enableQAComment: |
| Sets attendee comment. | |
| (ZoomSDKError) | - enableQAVoteup: |
| Sets attendee vote. | |
| (ZoomSDKError) | - setAttendeeViewQuestionType: |
| Sets attendee view question type. | |
| (ZoomSDKQuestionInfo *) | - getQuestionByQuestionID: |
| Gets the question object. | |
| (BOOL) | - isAskQuestionEnabled |
| Determines if the ask question is allowed by the host or co-host. | |
| (BOOL) | - isQAVoteupEnable |
| Determines if the Q&A vote is allowed by the host or co-host. | |
| (BOOL) | - isQACommentEnabled |
| Determines if the Q&A comment is allowed by the host or co-host. | |
| (BOOL) | - isAllowAskQuestionAnonymously |
| Determines if the ask question anonymous is allowed by the host or co-host. | |
| (BOOL) | - isAttendeeCanViewAllQuestions |
| Determines if the Q&A attendee can view all question. | |
| (ZoomSDKAnswerInfo *) | - getAnswerByAnswerID: |
| Gets the answer object. | |
| (ZoomSDKError) | - startLiving: |
| Starts answer question on living. | |
| (ZoomSDKError) | - endLiving: |
| End answer question on living. | |
| (int) | - getOpenQuestionCount |
| Gets open question count. | |
| (int) | - getDismissedQuestionCount |
| Gets dismiss question count. | |
| (int) | - getAnsweredQuestionCount |
| Gets answered question count. | |
| (int) | - getMyQuestionCount |
| Gets my question count. | |
| (ZoomSDKError) | - deleteQuestion: |
| Deleted question. | |
| (ZoomSDKError) | - deleteAnswer: |
| Deleted answer. | |
| (BOOL) | - isQALegalNoticeAvailable |
| Determines whether the legal notice for QA is available. | |
| (NSString *) | - getQALegalNoticesPrompt |
| Gets the QA legal notices prompt. | |
| (NSString *) | - getQALegalNoticesExplained |
| Gets the QA legal notices explained. | |
Protected Attributes | |
| id< ZoomSDKQAControllerDelegate > | _delegate |
Properties | |
| id< ZoomSDKQAControllerDelegate > | delegate |
| Delegate to receive Q&A-related callback events. | |
Provide interfaces to manage Q&A session in Zoom meeting.
Definition at line 293 of file ZoomSDKQAController.h.
| - (ZoomSDKError) addQuestionWithQuestionContent: | (NSString *) | content | |
| isAnonymous: | (BOOL) | Anonymous |
Attendee to send question.
| content | The question content of user send. |
| Anonymous | If YES means can anonymous send question, NO otherwise. |
| - (ZoomSDKError) answerQuestionPrivateWithQuestionID: | (NSString *) | questionID | |
| answerContent: | (NSString *) | content |
Answer questions in private.
| questionID | The answer question ID. |
| content | The answer content. |
| - (ZoomSDKError) answerQuestionPublicWithQuestionID: | (NSString *) | questionID | |
| answerContent: | (NSString *) | content |
Answer questions in public.
| questionID | The answer question ID. |
| content | The answer content. |
| - (ZoomSDKError) commentQuestionWithQuestionID: | (NSString *) | questionID | |
| commentContent: | (NSString *) | content |
Comment the question.
| questionID | The comment question ID. |
| content | The comment on the content. |
| - (ZoomSDKError) deleteAnswer: | (NSString *) | answerID |
Deleted answer.
| answerID | The ID of answer. |
| - (ZoomSDKError) deleteQuestion: | (NSString *) | questionID |
Deleted question.
| questionID | The ID of question. |
| - (ZoomSDKError) dismissQuestionWithQuestionID: | (NSString *) | questionID |
Dismiss question.
| questionID | The dismiss question is; |
| - (ZoomSDKError) enableAnonymousSendQuestion: | (BOOL) | enable |
Sets attendee can anonnymous send question.
| enable | If set YES means attendee can anonnymous send question, NO otherwise. |
| - (ZoomSDKError) enableAskQuestion: | (BOOL) | enable |
Sets attendee can ask question.
| enable | If set YES means attendee can ask question, NO otherwise. |
| - (ZoomSDKError) enableQAComment: | (BOOL) | enable |
Sets attendee comment.
| enable | If set YES means attendee can comment, NO otherwise. |
| - (ZoomSDKError) enableQAVoteup: | (BOOL) | enable |
Sets attendee vote.
| enable | If set YES means attendee can vote, NO otherwise. |
| - (ZoomSDKError) endLiving: | (NSString *) | questionId |
End answer question on living.
| questionId | The ID of question. |
| - (NSArray *_Nullable) getAllQuestionList |
Gets all question list.
References getAllQuestionList.
Referenced by getAllQuestionList.
| - (ZoomSDKAnswerInfo *) getAnswerByAnswerID: | (NSString *) | answerID |
Gets the answer object.
| answerID | The ID of answer. |
| - (int) getAnsweredQuestionCount |
Gets answered question count.
References getAnsweredQuestionCount.
Referenced by getAnsweredQuestionCount.
| - (NSArray *_Nullable) getAnsweredQuestionList |
Gets anwered question list.
References getAnsweredQuestionList.
Referenced by getAnsweredQuestionList.
| - (int) getDismissedQuestionCount |
Gets dismiss question count.
References getDismissedQuestionCount.
Referenced by getDismissedQuestionCount.
| - (NSArray *_Nullable) getDismissedQuestionList |
Gets dismissed question list.
References getDismissedQuestionList.
Referenced by getDismissedQuestionList.
| - (int) getMyQuestionCount |
Gets my question count.
References getMyQuestionCount.
Referenced by getMyQuestionCount.
| - (NSArray *_Nullable) getMyQuestionList |
Gets my question list.
References getMyQuestionList.
Referenced by getMyQuestionList.
| - (int) getOpenQuestionCount |
Gets open question count.
References getOpenQuestionCount.
Referenced by getOpenQuestionCount.
| - (NSArray *_Nullable) getOpenQuestionList |
Gets open question list.
References getOpenQuestionList.
Referenced by getOpenQuestionList.
| - (NSString *) getQALegalNoticesExplained |
Gets the QA legal notices explained.
References getQALegalNoticesExplained.
Referenced by getQALegalNoticesExplained.
| - (NSString *) getQALegalNoticesPrompt |
Gets the QA legal notices prompt.
References getQALegalNoticesPrompt.
Referenced by getQALegalNoticesPrompt.
| - (ZoomSDKQuestionInfo *) getQuestionByQuestionID: | (NSString *) | questionID |
Gets the question object.
| questionID | The ID of question. |
| - (BOOL) isAllowAskQuestionAnonymously |
Determines if the ask question anonymous is allowed by the host or co-host.
References isAllowAskQuestionAnonymously.
Referenced by isAllowAskQuestionAnonymously.
| - (BOOL) isAskQuestionEnabled |
Determines if the ask question is allowed by the host or co-host.
References isAskQuestionEnabled.
Referenced by isAskQuestionEnabled.
| - (BOOL) isAttendeeCanViewAllQuestions |
Determines if the Q&A attendee can view all question.
References isAttendeeCanViewAllQuestions.
Referenced by isAttendeeCanViewAllQuestions.
| - (BOOL) isQACommentEnabled |
Determines if the Q&A comment is allowed by the host or co-host.
References isQACommentEnabled.
Referenced by isQACommentEnabled.
| - (BOOL) isQAEnable |
Q&A function is available.
References isQAEnable.
Referenced by isQAEnable.
| - (BOOL) isQALegalNoticeAvailable |
Determines whether the legal notice for QA is available.
References isQALegalNoticeAvailable.
Referenced by isQALegalNoticeAvailable.
| - (BOOL) isQAVoteupEnable |
Determines if the Q&A vote is allowed by the host or co-host.
References isQAVoteupEnable.
Referenced by isQAVoteupEnable.
| - (ZoomSDKError) reopenQuestionWithQuestionID: | (NSString *) | questionID |
Reopen the question.
| questionID | The reopen question is. |
| - (ZoomSDKError) setAttendeeViewQuestionType: | (AttendeeViewQuestionType) | type |
Sets attendee view question type.
| 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 |
| - (ZoomSDKError) startLiving: | (NSString *) | questionId |
Starts answer question on living.
| questionId | The ID of question. |
| - (ZoomSDKError) voteupQuestionWithQuestionID: | (NSString *) | questionID | |
| isEableVokeup: | (BOOL) | enable |
Vote the question.
| questionID | The vote question ID. |
| enable | If YES, vote the question, Otherwise cancel vote. |
|
protected |
Definition at line 295 of file ZoomSDKQAController.h.
|
readwritenonatomicassign |
Delegate to receive Q&A-related callback events.
Definition at line 300 of file ZoomSDKQAController.h.