Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

SplitRequest.md

File metadata and controls

33 lines (24 loc) · 1.23 KB

SplitRequest

Properties

Name Type Description Notes
id str id of position to split
amount str Amount of tokens to be transferred to the new stake account.
fee str Represents the fee for a transaction, which can be specified as a percentage value. Only one of fee/feeLevel is required. [optional]
fee_level FeeLevel [optional]
tx_note str The note to associate with the transactions. [optional]

Example

from fireblocks.models.split_request import SplitRequest

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

# convert the object into a dict
split_request_dict = split_request_instance.to_dict()
# create an instance of SplitRequest from a dict
split_request_from_dict = SplitRequest.from_dict(split_request_dict)

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