SignTypedData

Properties

Name
Type
Description
Notes

data

str

Example

from moonsdk.models.sign_typed_data import SignTypedData

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

# convert the object into a dict
sign_typed_data_dict = sign_typed_data_instance.to_dict()
# create an instance of SignTypedData from a dict
sign_typed_data_form_dict = sign_typed_data.from_dict(sign_typed_data_dict)

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

Last updated