I'm using the Twilio Conversations Client for iOS. How do you get the participants for a conversation? Each conversation object has a participants array object.
[TwilioConversationsClient conversationsClientWithToken:token properties:nil delegate:self
completion:^(TCHResult *result, TwilioConversationsClient *convoClient) {
NSArray *participants = self.client.myConversations.firstObject.participants;
}];
How do you reload this array? I don't see any method like "getParticipants" to reload these values.
For instance, to reload the messages for a conversation there is this method.
- (void)getMessagesAfter:(NSUInteger)index
withCount:(NSUInteger)count
completion:(nonnull TCHMessagesCompletion)completion;