github.com/muxinc/mux-go@v1.1.1/model_asset_static_renditions.go (about)

     1  // Mux Go - Copyright 2019 Mux Inc.
     2  // NOTE: This file is auto generated. Do not edit this file manually.
     3  
     4  package muxgo
     5  
     6  // An object containing the current status of any static renditions (mp4s). The object does not exist if no static renditions have been requested. See [Download your videos](https://docs.mux.com/guides/video/download-your-videos) for more information.
     7  type AssetStaticRenditions struct {
     8  	// Indicates the status of downloadable MP4 versions of this asset.
     9  	Status string `json:"status,omitempty"`
    10  	// Array of file objects.
    11  	Files []AssetStaticRenditionsFiles `json:"files,omitempty"`
    12  }