Skip to content

0.17.0 #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ jobs:

steps:
- name: Install .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'
- name: Install OpenSSL 1.1
run: |
wget https://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Adding /tmp/output
run: mkdir -p /tmp/output

Expand All @@ -32,7 +36,7 @@ jobs:
MUX_TOKEN_SECRET: "${{ secrets.MUX_TOKEN_SECRET }}"
run: dotnet test --configuration ${{ matrix.dotnet-configuration }} --no-build
- name: Pack for ${{ matrix.dotnet-configuration }}
run: cp README.md icon.png src/Mux.Csharp.Sdk && dotnet pack --configuration ${{ matrix.dotnet-configuration }} --no-build --include-source --include-symbols --property:PackageOutputPath=/tmp/output
run: cp README.md icon.png src/Mux.Csharp.Sdk && dotnet pack --configuration ${{ matrix.dotnet-configuration }} --no-build --include-source --include-symbols --output /tmp/output

- name: Uploading artifact for ${{ matrix.dotnet-configuration }}
uses: actions/upload-artifact@v4
Expand Down
84 changes: 44 additions & 40 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,46 +14,50 @@ jobs:
dotnet-configuration: [Release]

steps:
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- name: Check out code
uses: actions/checkout@v3
- name: Adding /tmp/output
run: mkdir -p /tmp/output
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'
- name: Install OpenSSL 1.1
run: |
wget https://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
- name: Check out code
uses: actions/checkout@v4
- name: Adding /tmp/output
run: mkdir -p /tmp/output

- name: Set VERSION variable from tag
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
- name: Verify commit exists in origin/main
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/main
# have we configured the generator?
- name: Verify that the version exists in generator-config (have we updated versions?)
run: 'sudo apt-get install -y jq && [[ "$(jq -r ".packageVersion" gen/generator-config.json)" == "$VERSION" ]]'
# have we run the generator?
# TODO: once the OAS document is more readily available publicly, we can pull it here.
- name: Verify that the version exists in the built artifact
run: 'sudo apt-get install -y xmlstarlet && [[ $(cat ./src/Mux.Csharp.Sdk/Mux.Csharp.Sdk.csproj | xmlstarlet sel -t -v "/Project/PropertyGroup/Version/text()") == "$VERSION" ]]'
- name: Set VERSION variable from tag
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
- name: Verify commit exists in origin/main
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/main
# have we configured the generator?
- name: Verify that the version exists in generator-config (have we updated versions?)
run: 'sudo apt-get install -y jq && [[ "$(jq -r ".packageVersion" gen/generator-config.json)" == "$VERSION" ]]'
# have we run the generator?
# TODO: once the OAS document is more readily available publicly, we can pull it here.
- name: Verify that the version exists in the built artifact
run: 'sudo apt-get install -y xmlstarlet && [[ $(cat ./src/Mux.Csharp.Sdk/Mux.Csharp.Sdk.csproj | xmlstarlet sel -t -v "/Project/PropertyGroup/Version/text()") == "$VERSION" ]]'

- name: Build for ${{ matrix.dotnet-configuration }}
run: dotnet build --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION}
- name: Test for ${{ matrix.dotnet-configuration }}
env:
MUX_TOKEN_ID: "${{ secrets.MUX_TOKEN_ID }}"
MUX_TOKEN_SECRET: "${{ secrets.MUX_TOKEN_SECRET }}"
run: dotnet test --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION} --no-build
- name: Pack for ${{ matrix.dotnet-configuration }}
run: cp README.md icon.png src/Mux.Csharp.Sdk && dotnet pack --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION} --no-build --property:PackageOutputPath=/tmp/output
- name: Build for ${{ matrix.dotnet-configuration }}
run: dotnet build --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION}
- name: Test for ${{ matrix.dotnet-configuration }}
env:
MUX_TOKEN_ID: "${{ secrets.MUX_TOKEN_ID }}"
MUX_TOKEN_SECRET: "${{ secrets.MUX_TOKEN_SECRET }}"
run: dotnet test --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION} --no-build
- name: Pack for ${{ matrix.dotnet-configuration }}
run: cp README.md icon.png src/Mux.Csharp.Sdk && dotnet pack --configuration ${{ matrix.dotnet-configuration }} /p:Version=${VERSION} --no-build --output /tmp/output

- name: Uploading artifact for ${{ matrix.dotnet-configuration }}
uses: actions/upload-artifact@v4
with:
name: Mux.Csharp.Sdk-${{ matrix.dotnet-configuration }}
path: /tmp/output/*
- name: Push
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: dotnet nuget push /tmp/output/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_API_KEY}
- name: Uploading artifact for ${{ matrix.dotnet-configuration }}
uses: actions/upload-artifact@v4
with:
name: Mux.Csharp.Sdk-${{ matrix.dotnet-configuration }}
path: /tmp/output/*

- name: Push
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: dotnet nuget push /tmp/output/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_API_KEY}
10 changes: 8 additions & 2 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ docs/AssetNonStandardInputReasons.md
docs/AssetRecordingTimes.md
docs/AssetResponse.md
docs/AssetStaticRenditions.md
docs/AssetStaticRenditionsFiles.md
docs/AssetsApi.md
docs/BreakdownValue.md
docs/Broadcast.md
Expand All @@ -26,6 +25,8 @@ docs/CreatePlaybackIDResponse.md
docs/CreatePlaybackRestrictionRequest.md
docs/CreateSimulcastTargetRequest.md
docs/CreateSpaceRequest.md
docs/CreateStaticRenditionRequest.md
docs/CreateStaticRenditionResponse.md
docs/CreateTrackRequest.md
docs/CreateTrackResponse.md
docs/CreateTranscriptionVocabularyRequest.md
Expand Down Expand Up @@ -157,6 +158,7 @@ docs/SpaceStatus.md
docs/SpaceType.md
docs/SpacesApi.md
docs/StartSpaceBroadcastResponse.md
docs/StaticRendition.md
docs/StopSpaceBroadcastResponse.md
docs/Track.md
docs/TranscriptionVocabulariesApi.md
Expand All @@ -169,6 +171,7 @@ docs/UpdateAssetRequest.md
docs/UpdateLiveStreamEmbeddedSubtitlesRequest.md
docs/UpdateLiveStreamGeneratedSubtitlesRequest.md
docs/UpdateLiveStreamNewAssetSettings.md
docs/UpdateLiveStreamNewAssetSettingsStaticRenditionsRequest.md
docs/UpdateLiveStreamRequest.md
docs/UpdateReferrerDomainRestrictionRequest.md
docs/UpdateTranscriptionVocabularyRequest.md
Expand Down Expand Up @@ -234,7 +237,6 @@ src/Mux.Csharp.Sdk/Model/AssetNonStandardInputReasons.cs
src/Mux.Csharp.Sdk/Model/AssetRecordingTimes.cs
src/Mux.Csharp.Sdk/Model/AssetResponse.cs
src/Mux.Csharp.Sdk/Model/AssetStaticRenditions.cs
src/Mux.Csharp.Sdk/Model/AssetStaticRenditionsFiles.cs
src/Mux.Csharp.Sdk/Model/BreakdownValue.cs
src/Mux.Csharp.Sdk/Model/Broadcast.cs
src/Mux.Csharp.Sdk/Model/BroadcastLayout.cs
Expand All @@ -249,6 +251,8 @@ src/Mux.Csharp.Sdk/Model/CreatePlaybackIDResponse.cs
src/Mux.Csharp.Sdk/Model/CreatePlaybackRestrictionRequest.cs
src/Mux.Csharp.Sdk/Model/CreateSimulcastTargetRequest.cs
src/Mux.Csharp.Sdk/Model/CreateSpaceRequest.cs
src/Mux.Csharp.Sdk/Model/CreateStaticRenditionRequest.cs
src/Mux.Csharp.Sdk/Model/CreateStaticRenditionResponse.cs
src/Mux.Csharp.Sdk/Model/CreateTrackRequest.cs
src/Mux.Csharp.Sdk/Model/CreateTrackResponse.cs
src/Mux.Csharp.Sdk/Model/CreateTranscriptionVocabularyRequest.cs
Expand Down Expand Up @@ -364,6 +368,7 @@ src/Mux.Csharp.Sdk/Model/SpaceResponse.cs
src/Mux.Csharp.Sdk/Model/SpaceStatus.cs
src/Mux.Csharp.Sdk/Model/SpaceType.cs
src/Mux.Csharp.Sdk/Model/StartSpaceBroadcastResponse.cs
src/Mux.Csharp.Sdk/Model/StaticRendition.cs
src/Mux.Csharp.Sdk/Model/StopSpaceBroadcastResponse.cs
src/Mux.Csharp.Sdk/Model/Track.cs
src/Mux.Csharp.Sdk/Model/TranscriptionVocabulary.cs
Expand All @@ -374,6 +379,7 @@ src/Mux.Csharp.Sdk/Model/UpdateAssetRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateLiveStreamEmbeddedSubtitlesRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateLiveStreamGeneratedSubtitlesRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateLiveStreamNewAssetSettings.cs
src/Mux.Csharp.Sdk/Model/UpdateLiveStreamNewAssetSettingsStaticRenditionsRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateLiveStreamRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateReferrerDomainRestrictionRequest.cs
src/Mux.Csharp.Sdk/Model/UpdateTranscriptionVocabularyRequest.cs
Expand Down
10 changes: 5 additions & 5 deletions Mux.Csharp.Sdk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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", "{2D50A54C-78BD-4D1F-B1F4-10F733BD1B27}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mux.Csharp.Sdk", "src\Mux.Csharp.Sdk\Mux.Csharp.Sdk.csproj", "{F03B0211-BA4A-4FCF-AFEF-B804EFBB67B8}"
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
Expand All @@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2D50A54C-78BD-4D1F-B1F4-10F733BD1B27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2D50A54C-78BD-4D1F-B1F4-10F733BD1B27}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2D50A54C-78BD-4D1F-B1F4-10F733BD1B27}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2D50A54C-78BD-4D1F-B1F4-10F733BD1B27}.Release|Any CPU.Build.0 = Release|Any CPU
{F03B0211-BA4A-4FCF-AFEF-B804EFBB67B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F03B0211-BA4A-4FCF-AFEF-B804EFBB67B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F03B0211-BA4A-4FCF-AFEF-B804EFBB67B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F03B0211-BA4A-4FCF-AFEF-B804EFBB67B8}.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
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Mux is how developers build online video. This API encompasses both Mux Video an
At this moment, this SDK is not suitable for parsing or modeling webhook payloads, due to some incompatibilities in our API spec and our SDK generation tooling. We are working on resolving these issues, but for now you should only use this SDK for Mux's REST APIs.

- API version: v1
- SDK version: 0.16.0
- SDK version: 0.17.0
[https://docs.mux.com](https://docs.mux.com)

<a name="frameworks-supported"></a>
Expand Down Expand Up @@ -121,9 +121,11 @@ Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AssetsApi* | [**CreateAsset**](docs/AssetsApi.md#createasset) | **POST** /video/v1/assets | Create an asset
*AssetsApi* | [**CreateAssetPlaybackId**](docs/AssetsApi.md#createassetplaybackid) | **POST** /video/v1/assets/{ASSET_ID}/playback-ids | Create a playback ID
*AssetsApi* | [**CreateAssetStaticRendition**](docs/AssetsApi.md#createassetstaticrendition) | **POST** /video/v1/assets/{ASSET_ID}/static-renditions | Create a static rendition for an asset
*AssetsApi* | [**CreateAssetTrack**](docs/AssetsApi.md#createassettrack) | **POST** /video/v1/assets/{ASSET_ID}/tracks | Create an asset track
*AssetsApi* | [**DeleteAsset**](docs/AssetsApi.md#deleteasset) | **DELETE** /video/v1/assets/{ASSET_ID} | Delete an asset
*AssetsApi* | [**DeleteAssetPlaybackId**](docs/AssetsApi.md#deleteassetplaybackid) | **DELETE** /video/v1/assets/{ASSET_ID}/playback-ids/{PLAYBACK_ID} | Delete a playback ID
*AssetsApi* | [**DeleteAssetStaticRendition**](docs/AssetsApi.md#deleteassetstaticrendition) | **DELETE** /video/v1/assets/{ASSET_ID}/static-renditions/{STATIC_RENDITION_ID} | Delete a single static rendition for an asset
*AssetsApi* | [**DeleteAssetTrack**](docs/AssetsApi.md#deleteassettrack) | **DELETE** /video/v1/assets/{ASSET_ID}/tracks/{TRACK_ID} | Delete an asset track
*AssetsApi* | [**GenerateAssetTrackSubtitles**](docs/AssetsApi.md#generateassettracksubtitles) | **POST** /video/v1/assets/{ASSET_ID}/tracks/{TRACK_ID}/generate-subtitles | Generate track subtitles
*AssetsApi* | [**GetAsset**](docs/AssetsApi.md#getasset) | **GET** /video/v1/assets/{ASSET_ID} | Retrieve an asset
Expand Down Expand Up @@ -156,6 +158,7 @@ Class | Method | HTTP request | Description
*LiveStreamsApi* | [**DeleteLiveStream**](docs/LiveStreamsApi.md#deletelivestream) | **DELETE** /video/v1/live-streams/{LIVE_STREAM_ID} | Delete a live stream
*LiveStreamsApi* | [**DeleteLiveStreamPlaybackId**](docs/LiveStreamsApi.md#deletelivestreamplaybackid) | **DELETE** /video/v1/live-streams/{LIVE_STREAM_ID}/playback-ids/{PLAYBACK_ID} | Delete a live stream playback ID
*LiveStreamsApi* | [**DeleteLiveStreamSimulcastTarget**](docs/LiveStreamsApi.md#deletelivestreamsimulcasttarget) | **DELETE** /video/v1/live-streams/{LIVE_STREAM_ID}/simulcast-targets/{SIMULCAST_TARGET_ID} | Delete a live stream simulcast target
*LiveStreamsApi* | [**DeleteLiveStreamStaticRenditions**](docs/LiveStreamsApi.md#deletelivestreamstaticrenditions) | **DELETE** /video/v1/live-streams/{LIVE_STREAM_ID}/new-asset-settings/static-renditions | Delete a live stream's static renditions setting for new assets
*LiveStreamsApi* | [**DisableLiveStream**](docs/LiveStreamsApi.md#disablelivestream) | **PUT** /video/v1/live-streams/{LIVE_STREAM_ID}/disable | Disable a live stream
*LiveStreamsApi* | [**EnableLiveStream**](docs/LiveStreamsApi.md#enablelivestream) | **PUT** /video/v1/live-streams/{LIVE_STREAM_ID}/enable | Enable a live stream
*LiveStreamsApi* | [**GetLiveStream**](docs/LiveStreamsApi.md#getlivestream) | **GET** /video/v1/live-streams/{LIVE_STREAM_ID} | Retrieve a live stream
Expand All @@ -167,6 +170,7 @@ Class | Method | HTTP request | Description
*LiveStreamsApi* | [**UpdateLiveStream**](docs/LiveStreamsApi.md#updatelivestream) | **PATCH** /video/v1/live-streams/{LIVE_STREAM_ID} | Update a live stream
*LiveStreamsApi* | [**UpdateLiveStreamEmbeddedSubtitles**](docs/LiveStreamsApi.md#updatelivestreamembeddedsubtitles) | **PUT** /video/v1/live-streams/{LIVE_STREAM_ID}/embedded-subtitles | Update a live stream's embedded subtitles
*LiveStreamsApi* | [**UpdateLiveStreamGeneratedSubtitles**](docs/LiveStreamsApi.md#updatelivestreamgeneratedsubtitles) | **PUT** /video/v1/live-streams/{LIVE_STREAM_ID}/generated-subtitles | Update a live stream's generated subtitles
*LiveStreamsApi* | [**UpdateLiveStreamStaticRenditions**](docs/LiveStreamsApi.md#updatelivestreamstaticrenditions) | **PUT** /video/v1/live-streams/{LIVE_STREAM_ID}/new-asset-settings/static-renditions | Update live stream static renditions for new assets
*MetricsApi* | [**GetMetricTimeseriesData**](docs/MetricsApi.md#getmetrictimeseriesdata) | **GET** /data/v1/metrics/{METRIC_ID}/timeseries | Get metric timeseries data
*MetricsApi* | [**GetOverallValues**](docs/MetricsApi.md#getoverallvalues) | **GET** /data/v1/metrics/{METRIC_ID}/overall | Get Overall values
*MetricsApi* | [**ListAllMetricValues**](docs/MetricsApi.md#listallmetricvalues) | **GET** /data/v1/metrics/comparison | List all metric values
Expand Down Expand Up @@ -236,7 +240,6 @@ Class | Method | HTTP request | Description
- [Model.AssetRecordingTimes](docs/AssetRecordingTimes.md)
- [Model.AssetResponse](docs/AssetResponse.md)
- [Model.AssetStaticRenditions](docs/AssetStaticRenditions.md)
- [Model.AssetStaticRenditionsFiles](docs/AssetStaticRenditionsFiles.md)
- [Model.BreakdownValue](docs/BreakdownValue.md)
- [Model.Broadcast](docs/Broadcast.md)
- [Model.BroadcastLayout](docs/BroadcastLayout.md)
Expand All @@ -251,6 +254,8 @@ Class | Method | HTTP request | Description
- [Model.CreatePlaybackRestrictionRequest](docs/CreatePlaybackRestrictionRequest.md)
- [Model.CreateSimulcastTargetRequest](docs/CreateSimulcastTargetRequest.md)
- [Model.CreateSpaceRequest](docs/CreateSpaceRequest.md)
- [Model.CreateStaticRenditionRequest](docs/CreateStaticRenditionRequest.md)
- [Model.CreateStaticRenditionResponse](docs/CreateStaticRenditionResponse.md)
- [Model.CreateTrackRequest](docs/CreateTrackRequest.md)
- [Model.CreateTrackResponse](docs/CreateTrackResponse.md)
- [Model.CreateTranscriptionVocabularyRequest](docs/CreateTranscriptionVocabularyRequest.md)
Expand Down Expand Up @@ -366,6 +371,7 @@ Class | Method | HTTP request | Description
- [Model.SpaceStatus](docs/SpaceStatus.md)
- [Model.SpaceType](docs/SpaceType.md)
- [Model.StartSpaceBroadcastResponse](docs/StartSpaceBroadcastResponse.md)
- [Model.StaticRendition](docs/StaticRendition.md)
- [Model.StopSpaceBroadcastResponse](docs/StopSpaceBroadcastResponse.md)
- [Model.Track](docs/Track.md)
- [Model.TranscriptionVocabulary](docs/TranscriptionVocabulary.md)
Expand All @@ -376,6 +382,7 @@ Class | Method | HTTP request | Description
- [Model.UpdateLiveStreamEmbeddedSubtitlesRequest](docs/UpdateLiveStreamEmbeddedSubtitlesRequest.md)
- [Model.UpdateLiveStreamGeneratedSubtitlesRequest](docs/UpdateLiveStreamGeneratedSubtitlesRequest.md)
- [Model.UpdateLiveStreamNewAssetSettings](docs/UpdateLiveStreamNewAssetSettings.md)
- [Model.UpdateLiveStreamNewAssetSettingsStaticRenditionsRequest](docs/UpdateLiveStreamNewAssetSettingsStaticRenditionsRequest.md)
- [Model.UpdateLiveStreamRequest](docs/UpdateLiveStreamRequest.md)
- [Model.UpdateReferrerDomainRestrictionRequest](docs/UpdateReferrerDomainRestrictionRequest.md)
- [Model.UpdateTranscriptionVocabularyRequest](docs/UpdateTranscriptionVocabularyRequest.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/AssetStaticRenditions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ An object containing the current status of any static renditions (mp4s). The obj

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Status** | **string** | Indicates the status of downloadable MP4 versions of this asset. | [optional] [default to StatusEnum.Disabled]
**Files** | [**List&lt;AssetStaticRenditionsFiles&gt;**](AssetStaticRenditionsFiles.md) | Array of file objects. | [optional]
**Status** | **string** | Indicates the status of downloadable MP4 versions of this asset. This field is only valid when &#x60;mp4_support&#x60; is enabled | [optional] [default to StatusEnum.Disabled]
**Files** | [**List&lt;StaticRendition&gt;**](StaticRendition.md) | Array of file objects. | [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)

15 changes: 0 additions & 15 deletions docs/AssetStaticRenditionsFiles.md

This file was deleted.

Loading
Loading