Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.63 KB

File metadata and controls

34 lines (25 loc) · 1.63 KB

IsolateDisposition

The information about a request to isolate funds.

Properties

Name Type Description Notes
transaction_id str The UUID of the transaction whose funds are to be isolated. This identifies the original transaction that requires fund isolation.
destination_address str The blockchain address to receive the isolated funds.
disposition_amount str The amount to be isolated from the original transaction, specified as a numeric string. This value cannot exceed the total amount of the original transaction.
category_names List[str] Custom categories to identify and track this isolation transaction. Used for transaction classification and reporting. [optional]
description str Additional notes or description for the isolation. [optional]

Example

from cobo_waas2.models.isolate_disposition import IsolateDisposition

# TODO update the JSON string below
json = "{}"
# create an instance of IsolateDisposition from a JSON string
isolate_disposition_instance = IsolateDisposition.from_json(json)
# print the JSON string representation of the object
print(IsolateDisposition.to_json())

# convert the object into a dict
isolate_disposition_dict = isolate_disposition_instance.to_dict()
# create an instance of IsolateDisposition from a dict
isolate_disposition_from_dict = IsolateDisposition.from_dict(isolate_disposition_dict)

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