Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

AssetConfig

Policy asset configuration

Properties

Name Type Description Notes
nft_transfer bool Whether this is an NFT transfer
asset_types List[AssetTypesConfigInner] List of asset types [optional]
operator PolicyOperator [optional]

Example

from fireblocks.models.asset_config import AssetConfig

# TODO update the JSON string below
json = "{}"
# create an instance of AssetConfig from a JSON string
asset_config_instance = AssetConfig.from_json(json)
# print the JSON string representation of the object
print(AssetConfig.to_json())

# convert the object into a dict
asset_config_dict = asset_config_instance.to_dict()
# create an instance of AssetConfig from a dict
asset_config_from_dict = AssetConfig.from_dict(asset_config_dict)

[Back to Model list] [Back to API list] [Back to README]