GetMessageByIdAsync() private method

Get conversation messages Unique id for the campaign The unique id for the conversation message
private GetMessageByIdAsync ( string conversation_id, string message_id ) : Task
conversation_id string
message_id string
return Task
Example #1
0
 /// <summary>
 /// Get conversation messages
 /// <param name="conversation_id">Unique id for the campaign</param>
 /// <param name="message_id">The unique id for the conversation message</param>
 /// </summary>
 public async Task <ConversationMessage> GetMessageByIdAsync(string conversation_id, string message_id)
 {
     return(await msg.GetMessageByIdAsync(conversation_id, message_id));
 }