github.com/muxinc/mux-go@v1.1.1/model_asset_errors.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 // Object that describes any errors that happened when processing this asset. 7 type AssetErrors struct { 8 // The type of error that occurred for this asset. 9 Type string `json:"type,omitempty"` 10 // Error messages with more details. 11 Messages []string `json:"messages,omitempty"` 12 }