/// <summary> /// create /// </summary> /// <param name="pathServiceSid"> The service_sid </param> /// <param name="friendlyName"> A human-readable name for the Channel. </param> /// <param name="uniqueName"> A unique, addressable name for the Channel. </param> /// <param name="attributes"> An optional metadata field you can use to store any data you wish. </param> /// <param name="type"> The visibility of the channel - public or private. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Channel </returns> public static ChannelResource Create(string pathServiceSid, string friendlyName = null, string uniqueName = null, string attributes = null, ChannelResource.ChannelTypeEnum type = null, ITwilioRestClient client = null) { var options = new CreateChannelOptions(pathServiceSid) { FriendlyName = friendlyName, UniqueName = uniqueName, Attributes = attributes, Type = type }; return(Create(options, client)); }
/// <summary> /// create /// </summary> /// /// <param name="pathServiceSid"> The service_sid </param> /// <param name="friendlyName"> The friendly_name </param> /// <param name="uniqueName"> The unique_name </param> /// <param name="attributes"> The attributes </param> /// <param name="type"> The type </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Channel </returns> public static async System.Threading.Tasks.Task <ChannelResource> CreateAsync(string pathServiceSid, string friendlyName = null, string uniqueName = null, string attributes = null, ChannelResource.ChannelTypeEnum type = null, ITwilioRestClient client = null) { var options = new CreateChannelOptions(pathServiceSid) { FriendlyName = friendlyName, UniqueName = uniqueName, Attributes = attributes, Type = type }; return(await CreateAsync(options, client)); }