You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The time when the address was added to the blocklist, in Unix timestamp format, measured in milliseconds.
[optional]
Example
fromcobo_waas2.models.tokenization_blocklist_address_noteimportTokenizationBlocklistAddressNote# TODO update the JSON string belowjson="{}"# create an instance of TokenizationBlocklistAddressNote from a JSON stringtokenization_blocklist_address_note_instance=TokenizationBlocklistAddressNote.from_json(json)
# print the JSON string representation of the objectprint(TokenizationBlocklistAddressNote.to_json())
# convert the object into a dicttokenization_blocklist_address_note_dict=tokenization_blocklist_address_note_instance.to_dict()
# create an instance of TokenizationBlocklistAddressNote from a dicttokenization_blocklist_address_note_from_dict=TokenizationBlocklistAddressNote.from_dict(tokenization_blocklist_address_note_dict)