Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

WTInfoGenesisUniquePostingIDs

Properties

Name Type Description Notes
unique_posting_ids List[str]

Example

from wallet.models.wt_info_genesis_unique_posting_ids import WTInfoGenesisUniquePostingIDs

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

# convert the object into a dict
wt_info_genesis_unique_posting_ids_dict = wt_info_genesis_unique_posting_ids_instance.to_dict()
# create an instance of WTInfoGenesisUniquePostingIDs from a dict
wt_info_genesis_unique_posting_ids_form_dict = wt_info_genesis_unique_posting_ids.from_dict(wt_info_genesis_unique_posting_ids_dict)

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