Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 844 Bytes

pingresponse.md

File metadata and controls

27 lines (20 loc) · 844 Bytes

PingResponse

Properties

Name Type Description Notes
message str

Example

from moonsdk.models.ping_response import PingResponse

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

# convert the object into a dict
ping_response_dict = ping_response_instance.to_dict()
# create an instance of PingResponse from a dict
ping_response_form_dict = ping_response.from_dict(ping_response_dict)

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