A binary asset associated with the model.
- interface Asset {
- Model :
- # An optional identifier for the asset, which may be used
- # to retrieve the asset directly via the `asset` call. If
- # not specified the asset must be retrieved via listing calls.
- ID :
- AssetStatus :
- # An optional name for the model, often used for display purposes
- # or for downloads, will not always be specified.
- String :
- # The format of the asset, this will often be the same as the filename extension,
- # but
- # is intended to be a short identifier for the content type of the asset.
- String! :
- # The url the asset may be retrieved from.
- # This will only be populated if the status is `available`.
- String :
- # If populated, the url is only valid until the time given
- DateTime :
- }