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.

References getAnswerContent.

Referenced by getAnswerContent.

◆ 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.

References getAnswerID.

Referenced by getAnswerID.

◆ getQuestionId

- (NSString *_Nullable) getQuestionId

Gets the question ID.

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

References getQuestionId.

Referenced by getQuestionId.

◆ 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.

References getSendName.

Referenced by getSendName.

◆ getTimeStamp

- (time_t) getTimeStamp

Gets the current answer's timestamps.

Returns
The current answer's timestamps.

References getTimeStamp.

Referenced by getTimeStamp.

◆ isLiveAnswer

- (BOOL) isLiveAnswer

Gets the answer is live.

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

References isLiveAnswer.

Referenced by isLiveAnswer.

◆ isPrivate

- (BOOL) isPrivate

Gets the answer is private.

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

References isPrivate.

Referenced by isPrivate.

◆ isSenderMyself

- (BOOL) isSenderMyself

Gets the question answer is send myself.

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

References isSenderMyself.

Referenced by isSenderMyself.