Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCPollingItem Class Reference

Polling item interface. More...

#include <MobileRTCMeetingService+Polling.h>

Inherits NSObject.

Instance Methods

(NSString *_Nullable) - getPollingID
 Polling ID.
 
(NSString *_Nullable) - getPollingName
 Polling name.
 
(MobileRTCPollingType- getPollingType
 Polling type.
 
(MobileRTCPollingStatus- getPollingStatus
 Polling status.
 
(NSInteger) - getPollingQuestionCount
 Polling question count.
 
(NSInteger) - getTotalVotedUserCount
 Count of total voted users.
 
(BOOL) - isLibraryPolling
 Determine if is library polling.
 

Detailed Description

Polling item interface.

Definition at line 13 of file MobileRTCMeetingService+Polling.h.

Method Documentation

◆ getPollingID

- (NSString *_Nullable) getPollingID

Polling ID.

Returns
If the function succeeds, the return value is the polling ID. Otherwise, the return value is nil.

◆ getPollingName

- (NSString *_Nullable) getPollingName

Polling name.

Returns
If the function succeeds, the return value is the polling name. Otherwise, the return value is nil.

◆ getPollingQuestionCount

- (NSInteger) getPollingQuestionCount

Polling question count.

Returns
If the function succeeds, the return value is the polling question count. Otherwise, the return value is 0.

◆ getPollingStatus

- (MobileRTCPollingStatus) getPollingStatus

Polling status.

Returns
If the function succeeds, the return value is the polling status. Otherwise, the return value is MobileRTCPollingStatus_Unknown.

◆ getPollingType

- (MobileRTCPollingType) getPollingType

Polling type.

Returns
If the function succeeds, the return value is the polling type. Otherwise, the return value is MobileRTCPollingType_Unknown.

◆ getTotalVotedUserCount

- (NSInteger) getTotalVotedUserCount

Count of total voted users.

Returns
If the function succeeds, the return value is the total voted user count. Otherwise, the return value is 0.

◆ isLibraryPolling

- (BOOL) isLibraryPolling

Determine if is library polling.

Returns
YES means is library polling, otherwise not.
Note
This function is only available for the library polling.