Exemple #1
0
        public static async Task <AccountResource> GetAccountAsync(ITwilioRestClient client, string accountSid)
        {
            var options = new FetchAccountOptions
            {
                PathSid = accountSid
            };

            return(await AccountResource.FetchAsync(options, client));
        }