コード例 #1
0
        /// <summary>
        /// Create a new user role in your account's default service
        /// </summary>
        /// <param name="options"> Create Role parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Role </returns>
        public static RoleResource Create(CreateRoleOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildCreateRequest(options, client));

            return(FromJson(response.Content));
        }
コード例 #2
0
        /// <summary>
        /// Create a new user role in your account's default service
        /// </summary>
        /// <param name="options"> Create Role parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Role </returns>
        public static async System.Threading.Tasks.Task <RoleResource> CreateAsync(CreateRoleOptions options,
                                                                                   ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildCreateRequest(options, client));

            return(FromJson(response.Content));
        }
コード例 #3
0
        /// <summary>
        /// Create a new user role in your account's default service
        /// </summary>
        /// <param name="friendlyName"> A string to describe the new resource </param>
        /// <param name="type"> The type of role </param>
        /// <param name="permission"> A permission the role should have </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Role </returns>
        public static RoleResource Create(string friendlyName,
                                          RoleResource.RoleTypeEnum type,
                                          List <string> permission,
                                          ITwilioRestClient client = null)
        {
            var options = new CreateRoleOptions(friendlyName, type, permission);

            return(Create(options, client));
        }
コード例 #4
0
        /// <summary>
        /// Create a new user role in your account's default service
        /// </summary>
        /// <param name="friendlyName"> A string to describe the new resource </param>
        /// <param name="type"> The type of role </param>
        /// <param name="permission"> A permission the role should have </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Role </returns>
        public static async System.Threading.Tasks.Task <RoleResource> CreateAsync(string friendlyName,
                                                                                   RoleResource.RoleTypeEnum type,
                                                                                   List <string> permission,
                                                                                   ITwilioRestClient client = null)
        {
            var options = new CreateRoleOptions(friendlyName, type, permission);

            return(await CreateAsync(options, client));
        }
コード例 #5
0
 private static Request BuildCreateRequest(CreateRoleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Conversations,
                "/v1/Roles",
                postParams: options.GetParams(),
                headerParams: null
                ));
 }