Meeting SDK for macOS API Reference
Loading...
Searching...
No Matches
ZoomSDKAnswerInfo Class Reference

Represents an answer object in the Q&A module. More...

#include <ZoomSDKQAController.h>

Inherits NSObject.

Instance Methods

(NSString *_Nullable) - getAnswerID
 Gets the answer ID.
 
(BOOL) - isSenderMyself
 Gets the question answer is send myself.
 
(time_t) - getTimeStamp
 Gets the current answer's timestamps.
 
(NSString *_Nullable) - getAnswerContent
 Gets the answer content.
 
(NSString *_Nullable) - getSendName
 Gets the answer's sender name.
 
(NSString *_Nullable) - getQuestionId
 Gets the question ID.
 
(BOOL) - isPrivate
 Gets the answer is private.
 
(BOOL) - isLiveAnswer
 Gets the answer is live.
 

Detailed Description

Represents an answer object in the Q&A module.

Definition at line 16 of file ZoomSDKQAController.h.

Method Documentation

◆ getAnswerContent

- (NSString *_Nullable) getAnswerContent

Gets the answer content.

Returns
If the function succeeds, it returns the answer's content. Otherwise, this function fails and returns nil.

◆ getAnswerID

- (NSString *_Nullable) getAnswerID

Gets the answer ID.

Returns
If the function succeeds, it returns the current answer's ID. Otherwise, this function fails and returns nil.

◆ getQuestionId

- (NSString *_Nullable) getQuestionId

Gets the question ID.

Returns
If the function succeeds, it returns the questionID. Otherwise, this function fails and returns nil.

◆ getSendName

- (NSString *_Nullable) getSendName

Gets the answer's sender name.

Returns
If the function succeeds, it returns the person's name answering the question. Otherwise, this function fails and returns nil.

◆ getTimeStamp

- (time_t) getTimeStamp

Gets the current answer's timestamps.

Returns
The current answer's timestamps.

◆ isLiveAnswer

- (BOOL) isLiveAnswer

Gets the answer is live.

Returns
Yes means the answer is live. Otherwise, NO.

◆ isPrivate

- (BOOL) isPrivate

Gets the answer is private.

Returns
Yes means the answer is private. Otherwise, NO.

◆ isSenderMyself

- (BOOL) isSenderMyself

Gets the question answer is send myself.

Returns
Yes means the answer is send by self. Otherwise, NO.