github.com/muxinc/mux-go@v1.1.1/model_asset_static_renditions_files.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 type AssetStaticRenditionsFiles struct { 7 Name string `json:"name,omitempty"` 8 // Extension of the static rendition file 9 Ext string `json:"ext,omitempty"` 10 // The height of the static rendition's file in pixels 11 Height int32 `json:"height,omitempty"` 12 // The width of the static rendition's file in pixels 13 Width int32 `json:"width,omitempty"` 14 // The bitrate in bits per second 15 Bitrate int64 `json:"bitrate,omitempty"` 16 // The file size in bytes 17 Filesize string `json:"filesize,omitempty"` 18 }