| Name |
Type |
Description |
Notes |
| url |
str |
|
|
| req |
str |
|
|
from dappserver_server_sdk.models.blockchain_lethean_rpcdto import BlockchainLetheanRPCDTO
# TODO update the JSON string below
json = "{}"
# create an instance of BlockchainLetheanRPCDTO from a JSON string
blockchain_lethean_rpcdto_instance = BlockchainLetheanRPCDTO.from_json(json)
# print the JSON string representation of the object
print BlockchainLetheanRPCDTO.to_json()
# convert the object into a dict
blockchain_lethean_rpcdto_dict = blockchain_lethean_rpcdto_instance.to_dict()
# create an instance of BlockchainLetheanRPCDTO from a dict
blockchain_lethean_rpcdto_form_dict = blockchain_lethean_rpcdto.from_dict(blockchain_lethean_rpcdto_dict)
[Back to Model list] [Back to API list] [Back to README]