Lines Matching refs:AssetMap

17 add(attributes: AssetMap): Promise\<void>
31 | attributes | [AssetMap](#assetmap) | Yes | Attributes of the asset to add, including the asset p…
73 let attr: asset.AssetMap = new Map();
92 addSync(attributes: AssetMap): void
106 | attributes | [AssetMap](#assetmap) | Yes | Attributes of the asset to add, including the asset p…
142 let attr: asset.AssetMap = new Map();
157 remove(query: AssetMap): Promise\<void>
169 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to remove, such as the asset alia…
207 let query: asset.AssetMap = new Map();
223 removeSync(query: AssetMap): void
235 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to remove, such as the asset alia…
267 let query: asset.AssetMap = new Map();
279 update(query: AssetMap, attributesToUpdate: AssetMap): Promise\<void>
291 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to update, such as th…
292 | attributesToUpdate | [AssetMap](#assetmap) | Yes | New attributes of the asset, such as the asse…
332 let query: asset.AssetMap = new Map();
334 let attrsToUpdate: asset.AssetMap = new Map();
350 updateSync(query: AssetMap, attributesToUpdate: AssetMap): void
362 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to update, such as th…
363 | attributesToUpdate | [AssetMap](#assetmap) | Yes | New attributes of the asset, such as the asse…
397 let query: asset.AssetMap = new Map();
399 let attrsToUpdate: asset.AssetMap = new Map();
411 preQuery(query: AssetMap): Promise\<Uint8Array>
423 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to query, such as the asset alias…
464 let query: asset.AssetMap = new Map();
480 preQuerySync(query: AssetMap): Uint8Array
492 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to query, such as the asset alias…
533 let query: asset.AssetMap = new Map();
545 query(query: AssetMap): Promise\<Array\<AssetMap>>
557 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to query, such as the…
563 | Promise\<Array\<AssetMap>> | Promise used to return the result obtained.|
598 let query: asset.AssetMap = new Map();
601 asset.query(query).then((res: Array<asset.AssetMap>) => {
618 querySync(query: AssetMap): Array\<AssetMap>
630 | query | [AssetMap](#assetmap) | Yes | Attributes of the asset to query, such as the…
636 | Array\<AssetMap> | Array of query results.|
671 let query: asset.AssetMap = new Map();
674 let res: Array<asset.AssetMap> = asset.querySync(query);
690 postQuery(handle: AssetMap): Promise\<void>
702 | handle | [AssetMap](#assetmap) | Yes | Handle of the query operation, including the challenge va…
730 let handle: asset.AssetMap = new Map();
747 postQuerySync(handle: AssetMap): void
759 | handle | [AssetMap](#assetmap) | Yes | Handle of the query operation, including the challenge va…
781 let handle: asset.AssetMap = new Map();
808 Enumerate the keys of asset attributes ([AssetMap](#assetmap)), which are in key-value (KV) pairs.
853 Represents the value of each attribute in [AssetMap](#assetmap).
865 ## AssetMap section
867 type AssetMap = Map\<Tag, Value>