public static async Task <MessageResource> UpdateMessageAsync(ITwilioRestClient client, string messageSid, string body, string accountSid = null) { var options = new UpdateMessageOptions(messageSid, body) { PathAccountSid = accountSid }; return(await MessageResource.UpdateAsync(options, client)); }