Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.12 KB

PrepareRequestCreated.md

File metadata and controls

27 lines (20 loc) · 1.12 KB

PrepareRequestCreated

Properties

Name Type Description Notes
data PrepareRequestCreatedData

Example

from affinidi_tdk_iota_client.models.prepare_request_created import PrepareRequestCreated

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

# convert the object into a dict
prepare_request_created_dict = prepare_request_created_instance.to_dict()
# create an instance of PrepareRequestCreated from a dict
prepare_request_created_from_dict = PrepareRequestCreated.from_dict(prepare_request_created_dict)

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