Beispiel #1
0
        /// <summary>
        /// Retrieve a list of all push notification credentials on your account
        /// </summary>
        /// <param name="options"> Read Credential parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Credential </returns>
        public static ResourceSet <CredentialResource> Read(ReadCredentialOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <CredentialResource> .FromJson("credentials", response.Content);

            return(new ResourceSet <CredentialResource>(page, options, client));
        }
Beispiel #2
0
 private static Request BuildReadRequest(ReadCredentialOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Conversations,
                "/v1/Credentials",
                queryParams: options.GetParams(),
                headerParams: null
                ));
 }
Beispiel #3
0
        /// <summary>
        /// Retrieve a list of all push notification credentials on your account
        /// </summary>
        /// <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 Credential </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <CredentialResource> > ReadAsync(int?pageSize             = null,
                                                                                                      long?limit               = null,
                                                                                                      ITwilioRestClient client = null)
        {
            var options = new ReadCredentialOptions()
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Beispiel #4
0
        /// <summary>
        /// Retrieve a list of all push notification credentials on your account
        /// </summary>
        /// <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 Credential </returns>
        public static ResourceSet <CredentialResource> Read(int?pageSize             = null,
                                                            long?limit               = null,
                                                            ITwilioRestClient client = null)
        {
            var options = new ReadCredentialOptions()
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Beispiel #5
0
        /// <summary>
        /// Retrieve a list of all push notification credentials on your account
        /// </summary>
        /// <param name="options"> Read Credential parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Credential </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <CredentialResource> > ReadAsync(ReadCredentialOptions options,
                                                                                                      ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <CredentialResource> .FromJson("credentials", response.Content);

            return(new ResourceSet <CredentialResource>(page, options, client));
        }