/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch RoomRecording parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of RoomRecording </returns> public static RoomRecordingResource Fetch(FetchRoomRecordingOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// fetch /// </summary> /// <param name="pathRoomSid"> The SID of the Room resource with the recording to fetch </param> /// <param name="pathSid"> The SID that identifies the resource to fetch </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of RoomRecording </returns> public static async System.Threading.Tasks.Task <RoomRecordingResource> FetchAsync(string pathRoomSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchRoomRecordingOptions(pathRoomSid, pathSid); return(await FetchAsync(options, client)); }
private static Request BuildFetchRequest(FetchRoomRecordingOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Video, "/v1/Rooms/" + options.PathRoomSid + "/Recordings/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// fetch /// </summary> /// <param name="pathRoomSid"> The SID of the Room resource with the recording to fetch </param> /// <param name="pathSid"> The SID that identifies the resource to fetch </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of RoomRecording </returns> public static RoomRecordingResource Fetch(string pathRoomSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchRoomRecordingOptions(pathRoomSid, pathSid); return(Fetch(options, client)); }
/// <summary> /// fetch /// </summary> /// <param name="options"> Fetch RoomRecording parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of RoomRecording </returns> public static async System.Threading.Tasks.Task <RoomRecordingResource> FetchAsync(FetchRoomRecordingOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }