Exemplo n.º 1
0
        /// <summary>
        /// create
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
        /// <param name="friendlyName"> A string to describe the new resource </param>
        /// <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
        /// <param name="attributes"> A valid JSON string that contains application-specific data </param>
        /// <param name="type"> The visibility of the channel </param>
        /// <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
        /// <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
        /// <param name="createdBy"> The identity of the User that created the Channel </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,
                                             DateTime?dateCreated     = null,
                                             DateTime?dateUpdated     = null,
                                             string createdBy         = null,
                                             ITwilioRestClient client = null)
        {
            var options = new CreateChannelOptions(pathServiceSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName, Attributes = attributes, Type = type, DateCreated = dateCreated, DateUpdated = dateUpdated, CreatedBy = createdBy
            };

            return(Create(options, client));
        }
        /// <summary>
        /// create
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
        /// <param name="friendlyName"> A string to describe the new resource </param>
        /// <param name="uniqueName"> An application-defined string that uniquely identifies the Channel resource </param>
        /// <param name="attributes"> A valid JSON string that contains application-specific data </param>
        /// <param name="type"> The visibility of the channel </param>
        /// <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
        /// <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
        /// <param name="createdBy"> The identity of the User that created the Channel </param>
        /// <param name="xTwilioWebhookEnabled"> The X-Twilio-Webhook-Enabled HTTP request header </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,
                                                                                      DateTime?dateCreated = null,
                                                                                      DateTime?dateUpdated = null,
                                                                                      string createdBy     = null,
                                                                                      ChannelResource.WebhookEnabledTypeEnum xTwilioWebhookEnabled = null,
                                                                                      ITwilioRestClient client = null)
        {
            var options = new CreateChannelOptions(pathServiceSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName, Attributes = attributes, Type = type, DateCreated = dateCreated, DateUpdated = dateUpdated, CreatedBy = createdBy, XTwilioWebhookEnabled = xTwilioWebhookEnabled
            };

            return(await CreateAsync(options, client));
        }
Exemplo n.º 3
0
        /// <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));
        }