Defines requirements for the POST /orders endpoint.
| Name | Type | Description | Notes |
|---|---|---|---|
| settlement_types | List[SettlementTypeEnum] | Supported settlement types when creating an order. If present - settlement is required. If absent - no need to provide settlement. | [optional] |
| execution_types | List[ExecutionRequestDetailsType] | Supported execution types when creating an order. |
from fireblocks.models.manifest_order_info import ManifestOrderInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ManifestOrderInfo from a JSON string
manifest_order_info_instance = ManifestOrderInfo.from_json(json)
# print the JSON string representation of the object
print(ManifestOrderInfo.to_json())
# convert the object into a dict
manifest_order_info_dict = manifest_order_info_instance.to_dict()
# create an instance of ManifestOrderInfo from a dict
manifest_order_info_from_dict = ManifestOrderInfo.from_dict(manifest_order_info_dict)