Ejemplo n.º 1
0
        public static async Task <ShortCodeResource> GetShortCodeAsync(ITwilioRestClient client, string shortCodeSid, string accountSid)
        {
            var options = new FetchShortCodeOptions(shortCodeSid)
            {
                PathAccountSid = accountSid,
            };

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