Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.55 KB

File metadata and controls

36 lines (27 loc) · 1.55 KB

ForcedSweep

Properties

Name Type Description Notes
forced_sweep_id str The forced sweep ID generated by Cobo.
request_id str The request ID provided by you when creating the forced sweep.
wallet_id str The ID of the wallet in which the funds have been forcefully swept. [optional]
token_id str The ID of the token that has been forcefully swept. [optional]
amount str The amount of token that has been forcefully swept. [optional]
status ForcedSweepStatus
created_timestamp int The creation time of the forced sweep, represented as a UNIX timestamp in seconds. [optional]
updated_timestamp int The update time of the forced sweep, represented as a UNIX timestamp in seconds. [optional]

Example

from cobo_waas2.models.forced_sweep import ForcedSweep

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

# convert the object into a dict
forced_sweep_dict = forced_sweep_instance.to_dict()
# create an instance of ForcedSweep from a dict
forced_sweep_from_dict = ForcedSweep.from_dict(forced_sweep_dict)

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