Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

ManifestOrderInfo

Defines requirements for the POST /orders endpoint.

Properties

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.

Example

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)

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