Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 968 Bytes

File metadata and controls

24 lines (16 loc) · 968 Bytes

freeclimb.Model.CallResultAllOfSubresourceUris

The list of subresources for this Call. These include things like logs and recordings associated with the Call.

Properties

Name Type Description Notes
Logs string The URI for the logs associated with this Call. [optional]
Recordings string The URI for the recordings associated with this Call. [optional]

Example

using Newtonsoft.Json;
using freeclimb.Model;

string json = "{\"logs\":\"string\",\"recordings\":\"string\"}";

// create an instance of CallResultAllOfSubresourceUris from a JSON string
CallResultAllOfSubresourceUris callResultAllOfSubresourceUris = JsonConvert.DeserializeObject<CallResultAllOfSubresourceUris>(json);

[Back to Model list] [Back to API list] [Back to README]