Exemplo n.º 1
0
        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));
        }