/// <summary> /// Create a new Webhook for the Service /// </summary> /// <param name="options"> Create Webhook parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Webhook </returns> public static async System.Threading.Tasks.Task <WebhookResource> CreateAsync(CreateWebhookOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildCreateRequest(options, client)); return(FromJson(response.Content)); }