Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

Manifest

The manifest of the provider, describing its supported order, quote, and rate requirements.

Properties

Name Type Description Notes
order ManifestOrder
quote ManifestQuote
rate ManifestBase
participants_identification_policy ParticipantsIdentificationPolicy [optional]

Example

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)

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