/// <summary>
        /// Create a new user role in your service
        /// </summary>
        /// <param name="pathChatServiceSid"> The SID of the Conversation Service to create the resource under </param>
        /// <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 pathChatServiceSid,
                                          string friendlyName,
                                          RoleResource.RoleTypeEnum type,
                                          List <string> permission,
                                          ITwilioRestClient client = null)
        {
            var options = new CreateRoleOptions(pathChatServiceSid, friendlyName, type, permission);

            return(Create(options, client));
        }
示例#2
0
 /// <summary>
 /// Construct a new CreateRoleOptions
 /// </summary>
 /// <param name="pathChatServiceSid"> The SID of the Conversation Service to create the resource under </param>
 /// <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>
 public CreateRoleOptions(string pathChatServiceSid,
                          string friendlyName,
                          RoleResource.RoleTypeEnum type,
                          List <string> permission)
 {
     PathChatServiceSid = pathChatServiceSid;
     FriendlyName       = friendlyName;
     Type       = type;
     Permission = permission;
 }
        /// <summary>
        /// Create a new user role in your service
        /// </summary>
        /// <param name="pathChatServiceSid"> The SID of the Conversation Service to create the resource under </param>
        /// <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 pathChatServiceSid,
                                                                                   string friendlyName,
                                                                                   RoleResource.RoleTypeEnum type,
                                                                                   List <string> permission,
                                                                                   ITwilioRestClient client = null)
        {
            var options = new CreateRoleOptions(pathChatServiceSid, friendlyName, type, permission);

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