Пример #1
0
        /// <summary>
        /// Retrieve a list of all Sessions for this Service.
        /// </summary>
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Session </returns>
        public static ResourceSet <SessionResource> Read(string pathServiceSid,
                                                         string uniqueName = null,
                                                         SessionResource.StatusEnum status = null,
                                                         int?pageSize             = null,
                                                         long?limit               = null,
                                                         ITwilioRestClient client = null)
        {
            var options = new ReadSessionOptions(pathServiceSid)
            {
                UniqueName = uniqueName, Status = status, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Пример #2
0
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
        /// <param name="pathSid"> The unique string that identifies the resource </param>
        /// <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
        /// <param name="ttl"> When the session will expire </param>
        /// <param name="status"> The new status of the resource </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Session </returns>
        public static SessionResource Update(string pathServiceSid,
                                             string pathSid,
                                             DateTime?dateExpiry = null,
                                             int?ttl             = null,
                                             SessionResource.StatusEnum status = null,
                                             ITwilioRestClient client          = null)
        {
            var options = new UpdateSessionOptions(pathServiceSid, pathSid)
            {
                DateExpiry = dateExpiry, Ttl = ttl, Status = status
            };

            return(Update(options, client));
        }
Пример #3
0
        /// <summary>
        /// Create a new Session
        /// </summary>
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="dateExpiry"> The date this Session was expiry </param>
        /// <param name="ttl"> TTL for a Session, in seconds. </param>
        /// <param name="mode"> The Mode of this Session </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="participants"> A list of phone numbers to add to this Session. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Session </returns>
        public static SessionResource Create(string pathServiceSid,
                                             string uniqueName                 = null,
                                             DateTime?dateExpiry               = null,
                                             int?ttl                           = null,
                                             SessionResource.ModeEnum mode     = null,
                                             SessionResource.StatusEnum status = null,
                                             List <object> participants        = null,
                                             ITwilioRestClient client          = null)
        {
            var options = new CreateSessionOptions(pathServiceSid)
            {
                UniqueName = uniqueName, DateExpiry = dateExpiry, Ttl = ttl, Mode = mode, Status = status, Participants = participants
            };

            return(Create(options, client));
        }
Пример #4
0
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        ///
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="pathSid"> A string that uniquely identifies this Session. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="dateExpiry"> The date this Session was expiry </param>
        /// <param name="ttl"> TTL for a Session, in seconds. </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="participants"> A list of phone numbers to add to this Session. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Session </returns>
        public static async System.Threading.Tasks.Task <SessionResource> UpdateAsync(string pathServiceSid, string pathSid, string uniqueName = null, DateTime?dateExpiry = null, int?ttl = null, SessionResource.StatusEnum status = null, List <string> participants = null, ITwilioRestClient client = null)
        {
            var options = new UpdateSessionOptions(pathServiceSid, pathSid)
            {
                UniqueName = uniqueName, DateExpiry = dateExpiry, Ttl = ttl, Status = status, Participants = participants
            };

            return(await UpdateAsync(options, client));
        }
Пример #5
0
        /// <summary>
        /// Retrieve a list of all Sessions for this Service.
        /// </summary>
        ///
        /// <param name="pathServiceSid"> Service Sid. </param>
        /// <param name="uniqueName"> A unique, developer assigned name of this Session. </param>
        /// <param name="status"> The Status of this Session </param>
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Session </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <SessionResource> > ReadAsync(string pathServiceSid, string uniqueName = null, SessionResource.StatusEnum status = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null)
        {
            var options = new ReadSessionOptions(pathServiceSid)
            {
                UniqueName = uniqueName, Status = status, PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Пример #6
0
        /// <summary>
        /// Update a specific Session.
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
        /// <param name="pathSid"> The unique string that identifies the resource </param>
        /// <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
        /// <param name="ttl"> When the session will expire </param>
        /// <param name="status"> The new status of the resource </param>
        /// <param name="failOnParticipantConflict"> An experimental parameter to override the ProxyAllowParticipantConflict
        ///                                 account flag on a per-request basis. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Session </returns>
        public static async System.Threading.Tasks.Task <SessionResource> UpdateAsync(string pathServiceSid,
                                                                                      string pathSid,
                                                                                      DateTime?dateExpiry = null,
                                                                                      int?ttl             = null,
                                                                                      SessionResource.StatusEnum status = null,
                                                                                      bool?failOnParticipantConflict    = null,
                                                                                      ITwilioRestClient client          = null)
        {
            var options = new UpdateSessionOptions(pathServiceSid, pathSid)
            {
                DateExpiry = dateExpiry, Ttl = ttl, Status = status, FailOnParticipantConflict = failOnParticipantConflict
            };

            return(await UpdateAsync(options, client));
        }
Пример #7
0
        /// <summary>
        /// Create a new Session
        /// </summary>
        /// <param name="pathServiceSid"> The SID of the parent Service resource </param>
        /// <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
        /// <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
        /// <param name="ttl"> When the session will expire </param>
        /// <param name="mode"> The Mode of the Session </param>
        /// <param name="status"> Session status </param>
        /// <param name="participants"> The Participant objects to include in the new session </param>
        /// <param name="failOnParticipantConflict"> An experimental parameter to override the ProxyAllowParticipantConflict
        ///                                 account flag on a per-request basis. </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Session </returns>
        public static async System.Threading.Tasks.Task <SessionResource> CreateAsync(string pathServiceSid,
                                                                                      string uniqueName                 = null,
                                                                                      DateTime?dateExpiry               = null,
                                                                                      int?ttl                           = null,
                                                                                      SessionResource.ModeEnum mode     = null,
                                                                                      SessionResource.StatusEnum status = null,
                                                                                      List <object> participants        = null,
                                                                                      bool?failOnParticipantConflict    = null,
                                                                                      ITwilioRestClient client          = null)
        {
            var options = new CreateSessionOptions(pathServiceSid)
            {
                UniqueName = uniqueName, DateExpiry = dateExpiry, Ttl = ttl, Mode = mode, Status = status, Participants = participants, FailOnParticipantConflict = failOnParticipantConflict
            };

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