Defines requirements for the POST /quotes endpoint.
| Name | Type | Description | Notes |
|---|---|---|---|
| settlement_types | List[DVPSettlementType] | Supported settlement types when requesting a quote. If present - settlement is required. If absent - no need to provide settlement. | [optional] |
from fireblocks.models.manifest_quote_info import ManifestQuoteInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ManifestQuoteInfo from a JSON string
manifest_quote_info_instance = ManifestQuoteInfo.from_json(json)
# print the JSON string representation of the object
print(ManifestQuoteInfo.to_json())
# convert the object into a dict
manifest_quote_info_dict = manifest_quote_info_instance.to_dict()
# create an instance of ManifestQuoteInfo from a dict
manifest_quote_info_from_dict = ManifestQuoteInfo.from_dict(manifest_quote_info_dict)