Interface GetAssetRequest

Request to retrieve an asset. Must include a name or id, but not both.

interface GetAssetRequest {
    id?: string;
    name?: string;
}

Properties

Properties

id?: string

string that matches the asset's ID, generally starts with asset.

name?: string

string that matches the asset's name

Generated using TypeDoc