/// <summary> /// read /// </summary> /// <param name="options"> Read Message parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Message </returns> public static ResourceSet <MessageResource> Read(ReadMessageOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildReadRequest(options, client)); var page = Page <MessageResource> .FromJson("messages", response.Content); return(new ResourceSet <MessageResource>(page, options, client)); }
/// <summary> /// read /// </summary> /// /// <param name="pathServiceSid"> The service_sid </param> /// <param name="pathChannelSid"> The channel_sid </param> /// <param name="order"> The order </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 Message </returns> public static ResourceSet <MessageResource> Read(string pathServiceSid, string pathChannelSid, MessageResource.OrderTypeEnum order = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadMessageOptions(pathServiceSid, pathChannelSid) { Order = order, PageSize = pageSize, Limit = limit }; return(Read(options, client)); }
/// <summary> /// read /// </summary> /// /// <param name="pathServiceSid"> The service_sid </param> /// <param name="pathChannelSid"> The channel_sid </param> /// <param name="order"> The order </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 Message </returns> public static async System.Threading.Tasks.Task <ResourceSet <MessageResource> > ReadAsync(string pathServiceSid, string pathChannelSid, MessageResource.OrderTypeEnum order = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadMessageOptions(pathServiceSid, pathChannelSid) { Order = order, PageSize = pageSize, Limit = limit }; return(await ReadAsync(options, client)); }
private static Request BuildReadRequest(ReadMessageOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.IpMessaging, "/v1/Services/" + options.PathServiceSid + "/Channels/" + options.PathChannelSid + "/Messages", queryParams: options.GetParams() )); }
/// <summary> /// read /// </summary> /// <param name="options"> Read Message parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Message </returns> public static async System.Threading.Tasks.Task <ResourceSet <MessageResource> > ReadAsync(ReadMessageOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildReadRequest(options, client)); var page = Page <MessageResource> .FromJson("messages", response.Content); return(new ResourceSet <MessageResource>(page, options, client)); }