Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

File metadata and controls

33 lines (24 loc) · 1.41 KB

SafeTxDecodedDataParameters

The information about the decoded parameters of the transaction.

Properties

Name Type Description Notes
name str The name of the parameter. [optional]
type str The data type of the parameter. [optional]
value str The value of the parameter. [optional]
value_decoded List[SafeTxSubTransaction] The decoded value of the parameter (if applicable). [optional]

Example

from cobo_waas2.models.safe_tx_decoded_data_parameters import SafeTxDecodedDataParameters

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

# convert the object into a dict
safe_tx_decoded_data_parameters_dict = safe_tx_decoded_data_parameters_instance.to_dict()
# create an instance of SafeTxDecodedDataParameters from a dict
safe_tx_decoded_data_parameters_from_dict = SafeTxDecodedDataParameters.from_dict(safe_tx_decoded_data_parameters_dict)

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