The manifest of the provider, describing its supported order, quote, and rate requirements.
| Name | Type | Description | Notes |
|---|---|---|---|
| order | ManifestOrder | ||
| quote | ManifestQuote | ||
| rate | ManifestBase | ||
| participants_identification_policy | ParticipantsIdentificationPolicy | [optional] |
from fireblocks.models.manifest import Manifest
# TODO update the JSON string below
json = "{}"
# create an instance of Manifest from a JSON string
manifest_instance = Manifest.from_json(json)
# print the JSON string representation of the object
print(Manifest.to_json())
# convert the object into a dict
manifest_dict = manifest_instance.to_dict()
# create an instance of Manifest from a dict
manifest_from_dict = Manifest.from_dict(manifest_dict)