InputBody
Properties
Name
Type
Description
Notes
Example
from moonsdk.models.input_body import InputBody
# TODO update the JSON string below
json = "{}"
# create an instance of InputBody from a JSON string
input_body_instance = InputBody.from_json(json)
# print the JSON string representation of the object
print(InputBody.to_json())
# convert the object into a dict
input_body_dict = input_body_instance.to_dict()
# create an instance of InputBody from a dict
input_body_form_dict = input_body.from_dict(input_body_dict)Last updated