Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCQAItem.h
Go to the documentation of this file.
1
5
6#import <Foundation/Foundation.h>
7
12@interface MobileRTCQAAnswerItem : NSObject
13
18- (NSDate *_Nullable)getTime;
19
24- (NSString *_Nullable)getText;
25
30- (NSString *_Nullable)getSenderName;
31
36- (NSString *_Nullable)getQuestionId;
37
42- (NSString *_Nullable)getAnswerID;
43
48- (BOOL)isPrivate;
49
55
61
62@end
63
68@interface MobileRTCQAItem : NSObject
69
74- (NSString *_Nullable)getQuestionId;
75
80- (NSDate *_Nullable)getTime;
81
86- (NSString *_Nullable)getText;
87
92- (NSString *_Nullable)getSenderName;
93
99
105
111
116- (NSUInteger)getUpvoteNumber;
117
123
129
135
141
147
152- (NSString *_Nullable)getLiveAnswerName;
153
159
164- (nullable NSArray <MobileRTCQAAnswerItem *>*)getAnswerlist;
165@end
166
167
A class that represents a Q&A answer.
BOOL isLiveAnswer()
Determines if the answer is a live answer.
NSDate *_Nullable getTime()
Gets the answer time.
BOOL isSenderMyself()
Determines if the sender is myself.
NSString *_Nullable getText()
Gets the answer text.
NSString *_Nullable getSenderName()
Gets the sender name.
NSString *_Nullable getAnswerID()
Gets the answer ID.
BOOL isPrivate()
Determines if the answer is private.
NSString *_Nullable getQuestionId()
Gets the question ID.
A class that represents a Q&A question.
BOOL getHasLiveAnswers()
Determines if the question has live answers.
BOOL getHasTextAnswers()
Determines if the question has text answers.
BOOL isMySelfUpvoted()
Determines if I have upvoted the question.
BOOL isMarkedAsAnswered()
Determines if the question is marked as answered.
NSString *_Nullable getQuestionId()
Gets the question ID.
BOOL amILiveAnswering()
Determines if I am live answering the question.
BOOL isSenderMyself()
Determines if the sender is myself.
BOOL isAnonymous()
Determines if the question is anonymous.
NSString *_Nullable getSenderName()
Gets the sender name.
BOOL isMarkedAsDismissed()
Determines if the question is marked as dismissed.
NSUInteger getUpvoteNumber()
Gets the upvote number.
NSString *_Nullable getText()
Gets the question text.
NSDate *_Nullable getTime()
Gets the question time.
nullable NSArray< MobileRTCQAAnswerItem * > * getAnswerlist()
Gets the answer list.
NSString *_Nullable getLiveAnswerName()
Gets the live answer name.
BOOL isLiveAnswering()
Determines if someone is live answering the question.