#include <ZoomSDKQAController.h>
Inherits NSObject.
Definition at line 271 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.Otherwise not. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ 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 will return ZoomSDKError_Success. Otherwise failed.
◆ 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 will return ZoomSDKError_Success. Otherwise failed.
◆ 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 will return ZoomSDKError_Success. Otherwise failed.
◆ deleteAnswer:
Deleted answer.
- Parameters
-
answerID | The ID of answer. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ deleteQuestion:
Deleted question.
- Parameters
-
questionID | The ID of question. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ dismissQuestionWithQuestionID:
- (ZoomSDKError) dismissQuestionWithQuestionID: |
|
(NSString *) | questionID |
|
Dismiss question.
- Parameters
-
questionID | The dismiss question is; |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ enableAnonymousSendQuestion:
Set attendee can anonnymous send question.
- Parameters
-
enable | If set YES means attendee can anonnymous send question,Otherwise not. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ enableAskQuestion:
Set attendee can ask question.
- Parameters
-
enable | If set YES means attendee can ask question,Otherwise not. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ enableQAComment:
Set attendee comment.
- Parameters
-
enable | If set YES means attendee can comment,Otherwise not. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ enableQAVoteup:
Set attendee vote.
- Parameters
-
enable | If set YES means attendee can vote,Otherwise not. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ endLiving:
End answer question on living.
- Parameters
-
questionId | The ID of question. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ getAllQuestionList
- (NSArray *_Nullable) getAllQuestionList |
|
|
|
Get all question list.
- Returns
- If the function succeeds, the return value is array of all question.
◆ getAnswerByAnswerID:
Get the answer object.
- Parameters
-
answerID | The ID of answer. |
- Returns
- If the function succeeds, the return value is answer object.
◆ getAnsweredQuestionCount
- (int) getAnsweredQuestionCount |
|
|
|
Get answered question count.
- Returns
- Value is the answered question count.
◆ getAnsweredQuestionList
- (NSArray *_Nullable) getAnsweredQuestionList |
|
|
|
Get anwered question list.
- Returns
- If the function succeeds, the return value is array of answered question.
◆ getDismissedQuestionCount
- (int) getDismissedQuestionCount |
|
|
|
Get dismiss question count.
- Returns
- Value is the dismiss question count.
◆ getDismissedQuestionList
- (NSArray *_Nullable) getDismissedQuestionList |
|
|
|
Get dismissed question list.
- Returns
- If the function succeeds, the return value is array of dismissed question.
◆ getMyQuestionCount
- (int) getMyQuestionCount |
|
|
|
Get my question count.
- Returns
- Value is the my question count.
◆ getMyQuestionList
- (NSArray *_Nullable) getMyQuestionList |
|
|
|
Get my question list.
- Returns
- If the function succeeds, the return value is array of my question.
◆ getOpenQuestionCount
- (int) getOpenQuestionCount |
|
|
|
Get open question count.
- Returns
- Value is the open question count.
◆ getOpenQuestionList
- (NSArray *_Nullable) getOpenQuestionList |
|
|
|
Get open question list.
- Returns
- If the function succeeds, the return value is array of open question.
◆ getQALegalNoticesExplained
- (NSString *) getQALegalNoticesExplained |
|
|
|
Get the QA legal notices explained.
- Returns
- If the function succeeds, it will return the QA legal notices explained. Otherwise nil.
◆ getQALegalNoticesPrompt
- (NSString *) getQALegalNoticesPrompt |
|
|
|
Get the QA legal notices prompt.
- Returns
- If the function succeeds, it will return the QA legal notices prompt. Otherwise nil.
◆ getQuestionByQuestionID:
Get the question object.
- Parameters
-
questionID | The ID of question. |
- Returns
- If the function succeeds, the return value is question object.
◆ isAllowAskQuestionAnonymously
- (BOOL) isAllowAskQuestionAnonymously |
|
|
|
Determine if the ask question anonymous is allowed by the host/co-host.
- Returns
- If return YES means can ask question anonymously,otherwise not.
◆ isAskQuestionEnabled
- (BOOL) isAskQuestionEnabled |
|
|
|
Determine if the ask question is allowed by the host/co-host.
- Returns
- If return YES means can ask question,otherwise not.
◆ isAttendeeCanViewAllQuestions
- (BOOL) isAttendeeCanViewAllQuestions |
|
|
|
Determine if the Q&A attendee can view all question.
- Returns
- If return YES means attendee can view all queation,otherwise not.
◆ isQACommentEnabled
- (BOOL) isQACommentEnabled |
|
|
|
Determine if the Q&A comment is allowed by the host/co-host.
- Returns
- If return YES means can commeent,otherwise not.
◆ isQAEnable
Q&A function is available.
- Returns
- If return YES means Q&A is available,otherwise not.
◆ isQALegalNoticeAvailable
- (BOOL) isQALegalNoticeAvailable |
|
|
|
Determine whether the legal notice for QA is available.
- Returns
- YES indicates the legal notice for QA is available. Otherwise not.
◆ isQAVoteupEnable
- (BOOL) isQAVoteupEnable |
|
|
|
Determine if the Q&A vote is allowed by the host/co-host.
- Returns
- If return YES means can vote,otherwise not.
◆ reopenQuestionWithQuestionID:
- (ZoomSDKError) reopenQuestionWithQuestionID: |
|
(NSString *) | questionID |
|
Reopen the question.
- Parameters
-
questionID | The reopen question is. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ setAttendeeViewQuestionType:
Set 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 will return ZoomSDKError_Success. Otherwise failed.
◆ startLiving:
Start answer question on living.
- Parameters
-
questionId | The ID of question. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ voteupQuestionWithQuestionID:isEableVokeup:
- (ZoomSDKError) voteupQuestionWithQuestionID: |
|
(NSString *) | questionID |
isEableVokeup: |
|
(BOOL) | enable |
Vote the question.
- Parameters
-
questionID | The vote question ID. |
enable | If YES means vote the question,otherwise cancel vote. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success. Otherwise failed.
◆ _delegate
◆ delegate