| Name |
Type |
Description |
Notes |
| routing_ids |
List[str] |
|
|
from wallet.models.wt_info_genesis_routing_ids import WTInfoGenesisRoutingIDs
# TODO update the JSON string below
json = "{}"
# create an instance of WTInfoGenesisRoutingIDs from a JSON string
wt_info_genesis_routing_ids_instance = WTInfoGenesisRoutingIDs.from_json(json)
# print the JSON string representation of the object
print WTInfoGenesisRoutingIDs.to_json()
# convert the object into a dict
wt_info_genesis_routing_ids_dict = wt_info_genesis_routing_ids_instance.to_dict()
# create an instance of WTInfoGenesisRoutingIDs from a dict
wt_info_genesis_routing_ids_form_dict = wt_info_genesis_routing_ids.from_dict(wt_info_genesis_routing_ids_dict)
[Back to Model list] [Back to API list] [Back to README]