Beispiel #1
0
        public static async Task <AccountResource> CreateAccountAsync(ITwilioRestClient client, string friendlyName)
        {
            var options = new CreateAccountOptions()
            {
                FriendlyName = friendlyName
            };

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