diff --git a/Mux.Csharp.Sdk.sln b/Mux.Csharp.Sdk.sln
index dee806d..9a9b3da 100644
--- a/Mux.Csharp.Sdk.sln
+++ b/Mux.Csharp.Sdk.sln
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mux.Csharp.Sdk", "src\Mux.Csharp.Sdk\Mux.Csharp.Sdk.csproj", "{69256F91-9840-4749-BCE5-F775C3F732BC}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mux.Csharp.Sdk", "src\Mux.Csharp.Sdk\Mux.Csharp.Sdk.csproj", "{A432F283-CBBA-457F-B92E-79789CB9036B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mux.Csharp.Sdk.Test", "src\Mux.Csharp.Sdk.Test\Mux.Csharp.Sdk.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
@@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {69256F91-9840-4749-BCE5-F775C3F732BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {69256F91-9840-4749-BCE5-F775C3F732BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {69256F91-9840-4749-BCE5-F775C3F732BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {69256F91-9840-4749-BCE5-F775C3F732BC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A432F283-CBBA-457F-B92E-79789CB9036B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A432F283-CBBA-457F-B92E-79789CB9036B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A432F283-CBBA-457F-B92E-79789CB9036B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A432F283-CBBA-457F-B92E-79789CB9036B}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/README.md b/README.md
index a77a07b..6677eb8 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Mux is how developers build online video. This API encompasses both Mux Video an
**PLEASE NOTE:** This is an early build of the Mux C# SDK, as evidenced by its pre-1.0 status, but we're reasonably certain of its stability and usability against the Mux API.. Documentation is currently best-effort, but it'll improve over time! Instead of contacting Mux Support, please file an issue on this repository or email [Mux DevEx](devex@mux.com) for assistance.
- API version: v1
-- SDK version: 0.8.0
+- SDK version: 0.9.0
[https://docs.mux.com](https://docs.mux.com)
diff --git a/docs/AbridgedVideoView.md b/docs/AbridgedVideoView.md
index b94d626..e1ebf85 100644
--- a/docs/AbridgedVideoView.md
+++ b/docs/AbridgedVideoView.md
@@ -15,6 +15,8 @@ Name | Type | Description | Notes
**CountryCode** | **string** | | [optional]
**ViewStart** | **string** | | [optional]
**ViewEnd** | **string** | | [optional]
+**ViewerExperienceScore** | **float?** | | [optional]
+**WatchTime** | **int?** | | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/DimensionsApi.md b/docs/DimensionsApi.md
index 0a3bec2..ec42e79 100644
--- a/docs/DimensionsApi.md
+++ b/docs/DimensionsApi.md
@@ -10,7 +10,7 @@ Method | HTTP request | Description
# **ListDimensionValues**
-> ListDimensionValuesResponse ListDimensionValues (string DIMENSION_ID, int? limit = null, int? page = null, List filters = null, List timeframe = null)
+> ListDimensionValuesResponse ListDimensionValues (string DIMENSION_ID, int? limit = null, int? page = null, List filters = null, List metricFilters = null, List timeframe = null)
Lists the values for a specific dimension
@@ -41,12 +41,13 @@ namespace Example
var limit = 25; // int? | Number of items to include in the response (optional) (default to 25)
var page = 1; // int? | Offset by this many pages, of the size of `limit` (optional) (default to 1)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
try
{
// Lists the values for a specific dimension
- ListDimensionValuesResponse result = apiInstance.ListDimensionValues(DIMENSION_ID, limit, page, filters, timeframe);
+ ListDimensionValuesResponse result = apiInstance.ListDimensionValues(DIMENSION_ID, limit, page, filters, metricFilters, timeframe);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -68,6 +69,7 @@ Name | Type | Description | Notes
**limit** | **int?**| Number of items to include in the response | [optional] [default to 25]
**page** | **int?**| Offset by this many pages, of the size of `limit` | [optional] [default to 1]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
### Return type
diff --git a/docs/ErrorsApi.md b/docs/ErrorsApi.md
index 449517b..1035a81 100644
--- a/docs/ErrorsApi.md
+++ b/docs/ErrorsApi.md
@@ -9,7 +9,7 @@ Method | HTTP request | Description
# **ListErrors**
-> ListErrorsResponse ListErrors (List filters = null, List timeframe = null)
+> ListErrorsResponse ListErrors (List filters = null, List metricFilters = null, List timeframe = null)
List Errors
@@ -37,12 +37,13 @@ namespace Example
var apiInstance = new ErrorsApi(config);
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
try
{
// List Errors
- ListErrorsResponse result = apiInstance.ListErrors(filters, timeframe);
+ ListErrorsResponse result = apiInstance.ListErrors(filters, metricFilters, timeframe);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -61,6 +62,7 @@ namespace Example
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
### Return type
diff --git a/docs/InputSettings.md b/docs/InputSettings.md
index 600db30..26fa4a9 100644
--- a/docs/InputSettings.md
+++ b/docs/InputSettings.md
@@ -5,7 +5,7 @@ An array of objects that each describe an input file to be used to create the as
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**Url** | **string** | The URL of the file that Mux should download and use. * For the main input file, this should be the URL to the muxed file for Mux to download, for example an MP4, MOV, MKV, or TS file. Mux supports most audio/video file formats and codecs, but for fastest processing, you should [use standard inputs wherever possible](https://docs.mux.com/guides/minimize-processing-time). * For `audio` tracks, the URL is the location of the audio file for Mux to download, for example an M4A, WAV, or MP3 file. Mux supports most audio file formats and codecs, but for fastest processing, you should [use standard inputs wherever possible](https://docs.mux.com/guides/minimize-processing-time). * For `text` tracks, the URL is the location of subtitle/captions file. Mux supports [SubRip Text (SRT)](https://en.wikipedia.org/wiki/SubRip) and [Web Video Text Tracks](https://www.w3.org/TR/webvtt1/) formats for ingesting Subtitles and Closed Captions. * For Watermarking or Overlay, the URL is the location of the watermark image. * When creating clips from existing Mux assets, the URL is defined with `mux://assets/{asset_id}` template where `asset_id` is the Asset Identifier for creating the clip from. The url property may be omitted on the first input object when providing asset settings for LiveStream and Upload objects, in order to configure settings related to the primary (live stream or direct upload) input. | [optional]
+**Url** | **string** | The URL of the file that Mux should download and use. * For the main input file, this should be the URL to the muxed file for Mux to download, for example an MP4, MOV, MKV, or TS file. Mux supports most audio/video file formats and codecs, but for fastest processing, you should [use standard inputs wherever possible](https://docs.mux.com/guides/minimize-processing-time). * For `audio` tracks, the URL is the location of the audio file for Mux to download, for example an M4A, WAV, or MP3 file. Mux supports most audio file formats and codecs, but for fastest processing, you should [use standard inputs wherever possible](https://docs.mux.com/guides/minimize-processing-time). * For `text` tracks, the URL is the location of subtitle/captions file. Mux supports [SubRip Text (SRT)](https://en.wikipedia.org/wiki/SubRip) and [Web Video Text Tracks](https://www.w3.org/TR/webvtt1/) formats for ingesting Subtitles and Closed Captions. * For Watermarking or Overlay, the URL is the location of the watermark image. The maximum size is 4096x4096. * When creating clips from existing Mux assets, the URL is defined with `mux://assets/{asset_id}` template where `asset_id` is the Asset Identifier for creating the clip from. The url property may be omitted on the first input object when providing asset settings for LiveStream and Upload objects, in order to configure settings related to the primary (live stream or direct upload) input. | [optional]
**OverlaySettings** | [**InputSettingsOverlaySettings**](InputSettingsOverlaySettings.md) | | [optional]
**GeneratedSubtitles** | [**List<AssetGeneratedSubtitleSettings>**](AssetGeneratedSubtitleSettings.md) | Generate subtitle tracks using automatic speech recognition using this configuration. This may only be provided for the first input object (the main input file). For direct uploads, this first input should omit the url parameter, as the main input file is provided via the direct upload. This will create subtitles based on the audio track ingested from that main input file. Note that subtitle generation happens after initial ingest, so the generated tracks will be in the `preparing` state when the asset transitions to `ready`. | [optional]
**StartTime** | **double** | The time offset in seconds from the beginning of the video indicating the clip's starting marker. The default value is 0 when not included. This parameter is only applicable for creating clips when `input.url` has `mux://assets/{asset_id}` format. | [optional]
diff --git a/docs/LiveStream.md b/docs/LiveStream.md
index 89a8b4d..63c31d9 100644
--- a/docs/LiveStream.md
+++ b/docs/LiveStream.md
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
**LatencyMode** | **string** | Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Set this as an alternative to setting low latency or reduced latency flags. | [optional]
**Test** | **bool** | True means this live stream is a test live stream. Test live streams can be used to help evaluate the Mux Video APIs for free. There is no limit on the number of test live streams, but they are watermarked with the Mux logo, and limited to 5 minutes. The test live stream is disabled after the stream is active for 5 mins and the recorded asset also deleted after 24 hours. | [optional]
**MaxContinuousDuration** | **int** | The time in seconds a live stream may be continuously active before being disconnected. Defaults to 12 hours. | [optional] [default to 43200]
+**SrtPassphrase** | **string** | Unique key used for encrypting a stream to a Mux SRT endpoint. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/MetricsApi.md b/docs/MetricsApi.md
index b1d2dd8..0de9203 100644
--- a/docs/MetricsApi.md
+++ b/docs/MetricsApi.md
@@ -13,7 +13,7 @@ Method | HTTP request | Description
# **GetMetricTimeseriesData**
-> GetMetricTimeseriesDataResponse GetMetricTimeseriesData (string METRIC_ID, List timeframe = null, List filters = null, string measurement = null, string orderDirection = null, string groupBy = null)
+> GetMetricTimeseriesDataResponse GetMetricTimeseriesData (string METRIC_ID, List timeframe = null, List filters = null, List metricFilters = null, string measurement = null, string orderDirection = null, string groupBy = null)
Get metric timeseries data
@@ -43,6 +43,7 @@ namespace Example
var METRIC_ID = video_startup_time; // string | ID of the Metric
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var measurement = "95th"; // string | Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
var orderDirection = "asc"; // string | Sort order. (optional)
var groupBy = "minute"; // string | Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. (optional)
@@ -50,7 +51,7 @@ namespace Example
try
{
// Get metric timeseries data
- GetMetricTimeseriesDataResponse result = apiInstance.GetMetricTimeseriesData(METRIC_ID, timeframe, filters, measurement, orderDirection, groupBy);
+ GetMetricTimeseriesDataResponse result = apiInstance.GetMetricTimeseriesData(METRIC_ID, timeframe, filters, metricFilters, measurement, orderDirection, groupBy);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -71,6 +72,7 @@ Name | Type | Description | Notes
**METRIC_ID** | **string**| ID of the Metric |
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**measurement** | **string**| Measurement for the provided metric. If omitted, the default for the metric will be used. | [optional]
**orderDirection** | **string**| Sort order. | [optional]
**groupBy** | **string**| Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. | [optional]
@@ -98,7 +100,7 @@ Name | Type | Description | Notes
# **GetOverallValues**
-> GetOverallValuesResponse GetOverallValues (string METRIC_ID, List timeframe = null, List filters = null, string measurement = null)
+> GetOverallValuesResponse GetOverallValues (string METRIC_ID, List timeframe = null, List filters = null, List metricFilters = null, string measurement = null)
Get Overall values
@@ -128,12 +130,13 @@ namespace Example
var METRIC_ID = video_startup_time; // string | ID of the Metric
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var measurement = "95th"; // string | Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
try
{
// Get Overall values
- GetOverallValuesResponse result = apiInstance.GetOverallValues(METRIC_ID, timeframe, filters, measurement);
+ GetOverallValuesResponse result = apiInstance.GetOverallValues(METRIC_ID, timeframe, filters, metricFilters, measurement);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -154,6 +157,7 @@ Name | Type | Description | Notes
**METRIC_ID** | **string**| ID of the Metric |
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**measurement** | **string**| Measurement for the provided metric. If omitted, the default for the metric will be used. | [optional]
### Return type
@@ -179,7 +183,7 @@ Name | Type | Description | Notes
# **ListAllMetricValues**
-> ListAllMetricValuesResponse ListAllMetricValues (List timeframe = null, List filters = null, string dimension = null, string value = null)
+> ListAllMetricValuesResponse ListAllMetricValues (List timeframe = null, List filters = null, List metricFilters = null, string dimension = null, string value = null)
List all metric values
@@ -208,13 +212,14 @@ namespace Example
var apiInstance = new MetricsApi(config);
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var dimension = "asn"; // string | Dimension the specified value belongs to (optional)
var value = "value_example"; // string | Value to show all available metrics for (optional)
try
{
// List all metric values
- ListAllMetricValuesResponse result = apiInstance.ListAllMetricValues(timeframe, filters, dimension, value);
+ ListAllMetricValuesResponse result = apiInstance.ListAllMetricValues(timeframe, filters, metricFilters, dimension, value);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -234,6 +239,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**dimension** | **string**| Dimension the specified value belongs to | [optional]
**value** | **string**| Value to show all available metrics for | [optional]
@@ -260,7 +266,7 @@ Name | Type | Description | Notes
# **ListBreakdownValues**
-> ListBreakdownValuesResponse ListBreakdownValues (string METRIC_ID, string groupBy = null, string measurement = null, List filters = null, int? limit = null, int? page = null, string orderBy = null, string orderDirection = null, List timeframe = null)
+> ListBreakdownValuesResponse ListBreakdownValues (string METRIC_ID, string groupBy = null, string measurement = null, List filters = null, List metricFilters = null, int? limit = null, int? page = null, string orderBy = null, string orderDirection = null, List timeframe = null)
List breakdown values
@@ -291,6 +297,7 @@ namespace Example
var groupBy = "asn"; // string | Breakdown value to group the results by (optional)
var measurement = "95th"; // string | Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var limit = 25; // int? | Number of items to include in the response (optional) (default to 25)
var page = 1; // int? | Offset by this many pages, of the size of `limit` (optional) (default to 1)
var orderBy = "negative_impact"; // string | Value to order the results by (optional)
@@ -300,7 +307,7 @@ namespace Example
try
{
// List breakdown values
- ListBreakdownValuesResponse result = apiInstance.ListBreakdownValues(METRIC_ID, groupBy, measurement, filters, limit, page, orderBy, orderDirection, timeframe);
+ ListBreakdownValuesResponse result = apiInstance.ListBreakdownValues(METRIC_ID, groupBy, measurement, filters, metricFilters, limit, page, orderBy, orderDirection, timeframe);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -322,6 +329,7 @@ Name | Type | Description | Notes
**groupBy** | **string**| Breakdown value to group the results by | [optional]
**measurement** | **string**| Measurement for the provided metric. If omitted, the default for the metric will be used. | [optional]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**limit** | **int?**| Number of items to include in the response | [optional] [default to 25]
**page** | **int?**| Offset by this many pages, of the size of `limit` | [optional] [default to 1]
**orderBy** | **string**| Value to order the results by | [optional]
@@ -351,7 +359,7 @@ Name | Type | Description | Notes
# **ListInsights**
-> ListInsightsResponse ListInsights (string METRIC_ID, string measurement = null, string orderDirection = null, List timeframe = null)
+> ListInsightsResponse ListInsights (string METRIC_ID, string measurement = null, string orderDirection = null, List timeframe = null, List filters = null, List metricFilters = null)
List Insights
@@ -382,11 +390,13 @@ namespace Example
var measurement = "95th"; // string | Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
var orderDirection = "asc"; // string | Sort order. (optional)
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
+ var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
try
{
// List Insights
- ListInsightsResponse result = apiInstance.ListInsights(METRIC_ID, measurement, orderDirection, timeframe);
+ ListInsightsResponse result = apiInstance.ListInsights(METRIC_ID, measurement, orderDirection, timeframe, filters, metricFilters);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -408,6 +418,8 @@ Name | Type | Description | Notes
**measurement** | **string**| Measurement for the provided metric. If omitted, the default for the metric will be used. | [optional]
**orderDirection** | **string**| Sort order. | [optional]
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
+ **filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
### Return type
diff --git a/docs/ReferrerDomainRestriction.md b/docs/ReferrerDomainRestriction.md
index 739336a..df11a30 100644
--- a/docs/ReferrerDomainRestriction.md
+++ b/docs/ReferrerDomainRestriction.md
@@ -5,7 +5,7 @@ A list of domains allowed to play your videos.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**AllowedDomains** | **List<string>** | List of domains allowed to play videos. Possible values are * `[]` Empty Array indicates deny video playback requests for all domains * `[\"*\"]` A Single Wildcard `*` entry means allow video playback requests from any domain * `[\"*.example.com\", \"foo.com\"]` A list of up to 10 domains or valid dns-style wildcards | [optional]
+**AllowedDomains** | **List<string>** | List of domains allowed to play videos. Possible values are * `[]` Empty Array indicates deny video playback requests for all domains * `[\"*\"]` A Single Wildcard `*` entry means allow video playback requests from any domain * `[\"*.example.com\", \"foo.com\"]` A list of up to 10 domains or valid dns-style wildcards | [optional]
**AllowNoReferrer** | **bool** | A boolean to determine whether to allow or deny HTTP requests without `Referer` HTTP request header. Playback requests coming from non-web/native applications like iOS, Android or smart TVs will not have a `Referer` HTTP header. Set this value to `true` to allow these playback requests. | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/Track.md b/docs/Track.md
index 7db37bb..e9af5d8 100644
--- a/docs/Track.md
+++ b/docs/Track.md
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
**ClosedCaptions** | **bool** | Indicates the track provides Subtitles for the Deaf or Hard-of-hearing (SDH). This parameter is only set tracks where `type` is `text` and `text_type` is `subtitles`. | [optional]
**Passthrough** | **string** | Arbitrary user-supplied metadata set for the track either when creating the asset or track. This parameter is only set for `text` type tracks. Max 255 characters. | [optional]
**Status** | **string** | The status of the track. This parameter is only set for `text` type tracks. | [optional]
+**Primary** | **bool** | For an audio track, indicates that this is the primary audio track, ingested from the main input for this asset. The primary audio track cannot be deleted. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/UpdateReferrerDomainRestrictionRequest.md b/docs/UpdateReferrerDomainRestrictionRequest.md
index 5c27fe0..03fa345 100644
--- a/docs/UpdateReferrerDomainRestrictionRequest.md
+++ b/docs/UpdateReferrerDomainRestrictionRequest.md
@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**AllowedDomains** | **List<string>** | List of domains allowed to play videos. Possible values are * `[]` Empty Array indicates deny video playback requests for all domains * `[\"*\"]` A Single Wildcard `*` entry means allow video playback requests from any domain * `[\"*.example.com\", \"foo.com\"]` A list of up to 10 domains or valid dns-style wildcards | [optional]
+**AllowedDomains** | **List<string>** | List of domains allowed to play videos. Possible values are * `[]` Empty Array indicates deny video playback requests for all domains * `[\"*\"]` A Single Wildcard `*` entry means allow video playback requests from any domain * `[\"*.example.com\", \"foo.com\"]` A list of up to 10 domains or valid dns-style wildcards | [optional]
**AllowNoReferrer** | **bool** | A boolean to determine whether to allow or deny HTTP requests without `Referer` HTTP request header. Playback requests coming from non-web/native applications like iOS, Android or smart TVs will not have a `Referer` HTTP header. Set this value to `true` to allow these playback requests. | [optional] [default to false]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/docs/VideoView.md b/docs/VideoView.md
index 01768e0..2df771c 100644
--- a/docs/VideoView.md
+++ b/docs/VideoView.md
@@ -123,7 +123,7 @@ Name | Type | Description | Notes
**ViewSessionId** | **string** | | [optional]
**ViewerConnectionType** | **string** | | [optional]
**ViewerDeviceModel** | **string** | | [optional]
-**WeightedAverageBitrate** | **long?** | | [optional]
+**WeightedAverageBitrate** | **double?** | | [optional]
**Custom1** | **string** | | [optional]
**Custom2** | **string** | | [optional]
**Custom3** | **string** | | [optional]
@@ -145,6 +145,17 @@ Name | Type | Description | Notes
**ViewDroppedFrameCount** | **long?** | | [optional]
**ViewHasAd** | **bool** | | [optional]
**VideoStartupFailure** | **bool** | | [optional]
+**AdAttemptCount** | **int?** | | [optional]
+**AdBreakCount** | **int?** | | [optional]
+**AdBreakErrorCount** | **int?** | | [optional]
+**AdBreakErrorPercentage** | **string** | | [optional]
+**AdErrorCount** | **int?** | | [optional]
+**AdErrorPercentage** | **string** | | [optional]
+**AdImpressionCount** | **int?** | | [optional]
+**AdStartupErrorCount** | **int?** | | [optional]
+**AdStartupErrorPercentage** | **string** | | [optional]
+**AdExitBeforeStartCount** | **int?** | | [optional]
+**AdExitBeforeStartPercentage** | **string** | | [optional]
**LongResume** | **bool** | | [optional]
**LongRebuffering** | **bool** | | [optional]
diff --git a/docs/VideoViewsApi.md b/docs/VideoViewsApi.md
index 60a86f4..479df94 100644
--- a/docs/VideoViewsApi.md
+++ b/docs/VideoViewsApi.md
@@ -85,7 +85,7 @@ Name | Type | Description | Notes
# **ListVideoViews**
-> ListVideoViewsResponse ListVideoViews (int? limit = null, int? page = null, string viewerId = null, int? errorId = null, string orderDirection = null, List filters = null, List timeframe = null)
+> ListVideoViewsResponse ListVideoViews (int? limit = null, int? page = null, string viewerId = null, int? errorId = null, string orderDirection = null, List filters = null, List metricFilters = null, List timeframe = null)
List Video Views
@@ -118,12 +118,13 @@ namespace Example
var errorId = 56; // int? | Filter video views by the provided error ID (as returned in the error_type_id field in the list video views endpoint). If you provide any as the error ID, this will filter the results to those with any error. (optional)
var orderDirection = "asc"; // string | Sort order. (optional)
var filters = new List(); // List | Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ var metricFilters = new List(); // List | Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
var timeframe = new List(); // List | Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
try
{
// List Video Views
- ListVideoViewsResponse result = apiInstance.ListVideoViews(limit, page, viewerId, errorId, orderDirection, filters, timeframe);
+ ListVideoViewsResponse result = apiInstance.ListVideoViews(limit, page, viewerId, errorId, orderDirection, filters, metricFilters, timeframe);
Debug.WriteLine(result);
}
catch (ApiException e)
@@ -147,6 +148,7 @@ Name | Type | Description | Notes
**errorId** | **int?**| Filter video views by the provided error ID (as returned in the error_type_id field in the list video views endpoint). If you provide any as the error ID, this will filter the results to those with any error. | [optional]
**orderDirection** | **string**| Sort order. | [optional]
**filters** | [**List<string>**](string.md)| Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` | [optional]
+ **metricFilters** | [**List<string>**](string.md)| Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` | [optional]
**timeframe** | [**List<string>**](string.md)| Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` | [optional]
### Return type
diff --git a/gen/generator-config.json b/gen/generator-config.json
index 099d3c8..ace95dc 100644
--- a/gen/generator-config.json
+++ b/gen/generator-config.json
@@ -1,6 +1,6 @@
{
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/csharp-netcore.md",
- "packageVersion": "0.8.0",
+ "packageVersion": "0.9.0",
"caseInsensitiveResponseHeaders": true,
"disallowAdditionalPropertiesIfNotPresent": false,
"licenseID": "MIT",
diff --git a/src/Mux.Csharp.Sdk/Api/DimensionsApi.cs b/src/Mux.Csharp.Sdk/Api/DimensionsApi.cs
index b64d984..98e0ac2 100644
--- a/src/Mux.Csharp.Sdk/Api/DimensionsApi.cs
+++ b/src/Mux.Csharp.Sdk/Api/DimensionsApi.cs
@@ -38,9 +38,10 @@ public interface IDimensionsApiSync : IApiAccessor
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ListDimensionValuesResponse
- ListDimensionValuesResponse ListDimensionValues(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List));
+ ListDimensionValuesResponse ListDimensionValues(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List));
///
/// Lists the values for a specific dimension
@@ -53,9 +54,10 @@ public interface IDimensionsApiSync : IApiAccessor
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ApiResponse of ListDimensionValuesResponse
- ApiResponse ListDimensionValuesWithHttpInfo(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List));
+ ApiResponse ListDimensionValuesWithHttpInfo(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List));
///
/// List Dimensions
///
@@ -95,10 +97,11 @@ public interface IDimensionsApiAsync : IApiAccessor
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ListDimensionValuesResponse
- System.Threading.Tasks.Task ListDimensionValuesAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task ListDimensionValuesAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
///
/// Lists the values for a specific dimension
@@ -111,10 +114,11 @@ public interface IDimensionsApiAsync : IApiAccessor
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ApiResponse (ListDimensionValuesResponse)
- System.Threading.Tasks.Task> ListDimensionValuesWithHttpInfoAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task> ListDimensionValuesWithHttpInfoAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
///
/// List Dimensions
///
@@ -264,11 +268,12 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ListDimensionValuesResponse
- public ListDimensionValuesResponse ListDimensionValues(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List))
+ public ListDimensionValuesResponse ListDimensionValues(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List))
{
- Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = ListDimensionValuesWithHttpInfo(DIMENSION_ID, limit, page, filters, timeframe);
+ Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = ListDimensionValuesWithHttpInfo(DIMENSION_ID, limit, page, filters, metricFilters, timeframe);
return localVarResponse.Data;
}
@@ -280,9 +285,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ApiResponse of ListDimensionValuesResponse
- public Mux.Csharp.Sdk.Client.ApiResponse ListDimensionValuesWithHttpInfo(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List))
+ public Mux.Csharp.Sdk.Client.ApiResponse ListDimensionValuesWithHttpInfo(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List))
{
// verify the required parameter 'DIMENSION_ID' is set
if (DIMENSION_ID == null)
@@ -325,6 +331,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "filters[]", filters));
}
+ if (metricFilters != null)
+ {
+ localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "metric_filters[]", metricFilters));
+ }
if (timeframe != null)
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "timeframe[]", timeframe));
@@ -359,12 +369,13 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ListDimensionValuesResponse
- public async System.Threading.Tasks.Task ListDimensionValuesAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
+ public async System.Threading.Tasks.Task ListDimensionValuesAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
{
- Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = await ListDimensionValuesWithHttpInfoAsync(DIMENSION_ID, limit, page, filters, timeframe, cancellationToken).ConfigureAwait(false);
+ Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = await ListDimensionValuesWithHttpInfoAsync(DIMENSION_ID, limit, page, filters, metricFilters, timeframe, cancellationToken).ConfigureAwait(false);
return localVarResponse.Data;
}
@@ -376,10 +387,11 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ApiResponse (ListDimensionValuesResponse)
- public async System.Threading.Tasks.Task> ListDimensionValuesWithHttpInfoAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
+ public async System.Threading.Tasks.Task> ListDimensionValuesWithHttpInfoAsync(string DIMENSION_ID, int? limit = default(int?), int? page = default(int?), List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
{
// verify the required parameter 'DIMENSION_ID' is set
if (DIMENSION_ID == null)
@@ -423,6 +435,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "filters[]", filters));
}
+ if (metricFilters != null)
+ {
+ localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "metric_filters[]", metricFilters));
+ }
if (timeframe != null)
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "timeframe[]", timeframe));
diff --git a/src/Mux.Csharp.Sdk/Api/ErrorsApi.cs b/src/Mux.Csharp.Sdk/Api/ErrorsApi.cs
index 57a64c0..8137919 100644
--- a/src/Mux.Csharp.Sdk/Api/ErrorsApi.cs
+++ b/src/Mux.Csharp.Sdk/Api/ErrorsApi.cs
@@ -35,9 +35,10 @@ public interface IErrorsApiSync : IApiAccessor
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ListErrorsResponse
- ListErrorsResponse ListErrors(List filters = default(List), List timeframe = default(List));
+ ListErrorsResponse ListErrors(List filters = default(List), List metricFilters = default(List), List timeframe = default(List));
///
/// List Errors
@@ -47,9 +48,10 @@ public interface IErrorsApiSync : IApiAccessor
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ApiResponse of ListErrorsResponse
- ApiResponse ListErrorsWithHttpInfo(List filters = default(List), List timeframe = default(List));
+ ApiResponse ListErrorsWithHttpInfo(List filters = default(List), List metricFilters = default(List), List timeframe = default(List));
#endregion Synchronous Operations
}
@@ -67,10 +69,11 @@ public interface IErrorsApiAsync : IApiAccessor
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ListErrorsResponse
- System.Threading.Tasks.Task ListErrorsAsync(List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task ListErrorsAsync(List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
///
/// List Errors
@@ -80,10 +83,11 @@ public interface IErrorsApiAsync : IApiAccessor
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ApiResponse (ListErrorsResponse)
- System.Threading.Tasks.Task> ListErrorsWithHttpInfoAsync(List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task> ListErrorsWithHttpInfoAsync(List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
#endregion Asynchronous Operations
}
@@ -209,11 +213,12 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ListErrorsResponse
- public ListErrorsResponse ListErrors(List filters = default(List), List timeframe = default(List))
+ public ListErrorsResponse ListErrors(List filters = default(List), List metricFilters = default(List), List timeframe = default(List))
{
- Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = ListErrorsWithHttpInfo(filters, timeframe);
+ Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = ListErrorsWithHttpInfo(filters, metricFilters, timeframe);
return localVarResponse.Data;
}
@@ -222,9 +227,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ApiResponse of ListErrorsResponse
- public Mux.Csharp.Sdk.Client.ApiResponse ListErrorsWithHttpInfo(List filters = default(List), List timeframe = default(List))
+ public Mux.Csharp.Sdk.Client.ApiResponse ListErrorsWithHttpInfo(List filters = default(List), List metricFilters = default(List), List timeframe = default(List))
{
Mux.Csharp.Sdk.Client.RequestOptions localVarRequestOptions = new Mux.Csharp.Sdk.Client.RequestOptions();
@@ -252,6 +258,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "filters[]", filters));
}
+ if (metricFilters != null)
+ {
+ localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "metric_filters[]", metricFilters));
+ }
if (timeframe != null)
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "timeframe[]", timeframe));
@@ -283,12 +293,13 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ListErrorsResponse
- public async System.Threading.Tasks.Task ListErrorsAsync(List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
+ public async System.Threading.Tasks.Task ListErrorsAsync(List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
{
- Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = await ListErrorsWithHttpInfoAsync(filters, timeframe, cancellationToken).ConfigureAwait(false);
+ Mux.Csharp.Sdk.Client.ApiResponse localVarResponse = await ListErrorsWithHttpInfoAsync(filters, metricFilters, timeframe, cancellationToken).ConfigureAwait(false);
return localVarResponse.Data;
}
@@ -297,10 +308,11 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
///
/// Thrown when fails to make API call
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Cancellation Token to cancel the request.
/// Task of ApiResponse (ListErrorsResponse)
- public async System.Threading.Tasks.Task> ListErrorsWithHttpInfoAsync(List filters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
+ public async System.Threading.Tasks.Task> ListErrorsWithHttpInfoAsync(List filters = default(List), List metricFilters = default(List), List timeframe = default(List), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
{
Mux.Csharp.Sdk.Client.RequestOptions localVarRequestOptions = new Mux.Csharp.Sdk.Client.RequestOptions();
@@ -329,6 +341,10 @@ public Mux.Csharp.Sdk.Client.ExceptionFactory ExceptionFactory
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "filters[]", filters));
}
+ if (metricFilters != null)
+ {
+ localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "metric_filters[]", metricFilters));
+ }
if (timeframe != null)
{
localVarRequestOptions.QueryParameters.Add(Mux.Csharp.Sdk.Client.ClientUtils.ParameterToMultiMap("multi", "timeframe[]", timeframe));
diff --git a/src/Mux.Csharp.Sdk/Api/MetricsApi.cs b/src/Mux.Csharp.Sdk/Api/MetricsApi.cs
index 1612ad9..c2f0f00 100644
--- a/src/Mux.Csharp.Sdk/Api/MetricsApi.cs
+++ b/src/Mux.Csharp.Sdk/Api/MetricsApi.cs
@@ -37,11 +37,12 @@ public interface IMetricsApiSync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional)
/// Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. (optional)
/// GetMetricTimeseriesDataResponse
- GetMetricTimeseriesDataResponse GetMetricTimeseriesData(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string));
+ GetMetricTimeseriesDataResponse GetMetricTimeseriesData(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string));
///
/// Get metric timeseries data
@@ -53,11 +54,12 @@ public interface IMetricsApiSync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional)
/// Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. (optional)
/// ApiResponse of GetMetricTimeseriesDataResponse
- ApiResponse GetMetricTimeseriesDataWithHttpInfo(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string));
+ ApiResponse GetMetricTimeseriesDataWithHttpInfo(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string));
///
/// Get Overall values
///
@@ -68,9 +70,10 @@ public interface IMetricsApiSync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// GetOverallValuesResponse
- GetOverallValuesResponse GetOverallValues(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string));
+ GetOverallValuesResponse GetOverallValues(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string));
///
/// Get Overall values
@@ -82,9 +85,10 @@ public interface IMetricsApiSync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// ApiResponse of GetOverallValuesResponse
- ApiResponse GetOverallValuesWithHttpInfo(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string));
+ ApiResponse GetOverallValuesWithHttpInfo(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string));
///
/// List all metric values
///
@@ -94,10 +98,11 @@ public interface IMetricsApiSync : IApiAccessor
/// Thrown when fails to make API call
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Dimension the specified value belongs to (optional)
/// Value to show all available metrics for (optional)
/// ListAllMetricValuesResponse
- ListAllMetricValuesResponse ListAllMetricValues(List timeframe = default(List), List filters = default(List), string dimension = default(string), string value = default(string));
+ ListAllMetricValuesResponse ListAllMetricValues(List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string dimension = default(string), string value = default(string));
///
/// List all metric values
@@ -108,10 +113,11 @@ public interface IMetricsApiSync : IApiAccessor
/// Thrown when fails to make API call
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Dimension the specified value belongs to (optional)
/// Value to show all available metrics for (optional)
/// ApiResponse of ListAllMetricValuesResponse
- ApiResponse ListAllMetricValuesWithHttpInfo(List timeframe = default(List), List filters = default(List), string dimension = default(string), string value = default(string));
+ ApiResponse ListAllMetricValuesWithHttpInfo(List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string dimension = default(string), string value = default(string));
///
/// List breakdown values
///
@@ -123,13 +129,14 @@ public interface IMetricsApiSync : IApiAccessor
/// Breakdown value to group the results by (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Value to order the results by (optional)
/// Sort order. (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ListBreakdownValuesResponse
- ListBreakdownValuesResponse ListBreakdownValues(string METRIC_ID, string groupBy = default(string), string measurement = default(string), List filters = default(List), int? limit = default(int?), int? page = default(int?), string orderBy = default(string), string orderDirection = default(string), List timeframe = default(List));
+ ListBreakdownValuesResponse ListBreakdownValues(string METRIC_ID, string groupBy = default(string), string measurement = default(string), List filters = default(List), List metricFilters = default(List), int? limit = default(int?), int? page = default(int?), string orderBy = default(string), string orderDirection = default(string), List timeframe = default(List));
///
/// List breakdown values
@@ -142,13 +149,14 @@ public interface IMetricsApiSync : IApiAccessor
/// Breakdown value to group the results by (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Number of items to include in the response (optional, default to 25)
/// Offset by this many pages, of the size of `limit` (optional, default to 1)
/// Value to order the results by (optional)
/// Sort order. (optional)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// ApiResponse of ListBreakdownValuesResponse
- ApiResponse ListBreakdownValuesWithHttpInfo(string METRIC_ID, string groupBy = default(string), string measurement = default(string), List filters = default(List), int? limit = default(int?), int? page = default(int?), string orderBy = default(string), string orderDirection = default(string), List timeframe = default(List));
+ ApiResponse ListBreakdownValuesWithHttpInfo(string METRIC_ID, string groupBy = default(string), string measurement = default(string), List filters = default(List), List metricFilters = default(List), int? limit = default(int?), int? page = default(int?), string orderBy = default(string), string orderDirection = default(string), List timeframe = default(List));
///
/// List Insights
///
@@ -160,8 +168,10 @@ public interface IMetricsApiSync : IApiAccessor
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional) (deprecated)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
+ /// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// ListInsightsResponse
- ListInsightsResponse ListInsights(string METRIC_ID, string measurement = default(string), string orderDirection = default(string), List timeframe = default(List));
+ ListInsightsResponse ListInsights(string METRIC_ID, string measurement = default(string), string orderDirection = default(string), List timeframe = default(List), List filters = default(List), List metricFilters = default(List));
///
/// List Insights
@@ -174,8 +184,10 @@ public interface IMetricsApiSync : IApiAccessor
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional) (deprecated)
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
+ /// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// ApiResponse of ListInsightsResponse
- ApiResponse ListInsightsWithHttpInfo(string METRIC_ID, string measurement = default(string), string orderDirection = default(string), List timeframe = default(List));
+ ApiResponse ListInsightsWithHttpInfo(string METRIC_ID, string measurement = default(string), string orderDirection = default(string), List timeframe = default(List), List filters = default(List), List metricFilters = default(List));
#endregion Synchronous Operations
}
@@ -195,12 +207,13 @@ public interface IMetricsApiAsync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional)
/// Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. (optional)
/// Cancellation Token to cancel the request.
/// Task of GetMetricTimeseriesDataResponse
- System.Threading.Tasks.Task GetMetricTimeseriesDataAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task GetMetricTimeseriesDataAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
///
/// Get metric timeseries data
@@ -212,12 +225,13 @@ public interface IMetricsApiAsync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Sort order. (optional)
/// Time granularity to group results by. If this value is omitted, a default granularity is chosen based on the timeframe. For timeframes of less than 90 minutes, the default granularity is `minute`. Between 90 minutes and 6 hours, the default granularity is `ten_minutes`. Between 6 hours and 15 days inclusive, the default granularity is `hour`. The granularity of timeframes that exceed 15 days is `day`. This default behavior is subject to change; it is strongly suggested that you explicitly specify the granularity. (optional)
/// Cancellation Token to cancel the request.
/// Task of ApiResponse (GetMetricTimeseriesDataResponse)
- System.Threading.Tasks.Task> GetMetricTimeseriesDataWithHttpInfoAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task> GetMetricTimeseriesDataWithHttpInfoAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List), string measurement = default(string), string orderDirection = default(string), string groupBy = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
///
/// Get Overall values
///
@@ -228,10 +242,11 @@ public interface IMetricsApiAsync : IApiAccessor
/// ID of the Metric
/// Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=). Accepted formats are... * array of epoch timestamps e.g. `timeframe[]=1498867200&timeframe[]=1498953600` * duration string e.g. `timeframe[]=24:hours or timeframe[]=7:days` (optional)
/// Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter. To exclude rows that match a certain condition, prepend a `!` character to the dimension. Possible filter names are the same as returned by the List Filters endpoint. Example: * `filters[]=operating_system:windows&filters[]=!country:US` (optional)
+ /// Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter. Possible filterable metrics are the same as the set of metric ids, with the exceptions of `exits_before_video_start`, `unique_viewers`, `video_startup_failure_percentage`, and `views`. Example: * `metric_filters[]=aggregate_startup_time>=1000` (optional)
/// Measurement for the provided metric. If omitted, the default for the metric will be used. (optional)
/// Cancellation Token to cancel the request.
/// Task of GetOverallValuesResponse
- System.Threading.Tasks.Task GetOverallValuesAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), string measurement = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ System.Threading.Tasks.Task GetOverallValuesAsync(string METRIC_ID, List timeframe = default(List), List filters = default(List), List metricFilters = default(List