Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1021 Bytes

File metadata and controls

29 lines (20 loc) · 1021 Bytes

WTInfoGenesisRoutingIDs

Properties

Name Type Description Notes
routing_ids List[str]

Example

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]