Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.77 KB

File metadata and controls

38 lines (29 loc) · 1.77 KB

TokenizationActivityInfo

Properties

Name Type Description Notes
activity_id str The ID of the activity.
token_id str The token ID.
type TokenizationOperationType
status TokenizationActivityStatus
source TokenizationTokenOperationSource
initiator str The initiator of the activity.
initiator_type TransactionInitiatorType
transaction_ids List[str] The IDs of the corresponding transactions of the activity.
created_timestamp int The creation timestamp of the activity in milliseconds since the Unix epoch.
updated_timestamp int The last update timestamp of the activity in milliseconds since the Unix epoch.

Example

from cobo_waas2.models.tokenization_activity_info import TokenizationActivityInfo

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

# convert the object into a dict
tokenization_activity_info_dict = tokenization_activity_info_instance.to_dict()
# create an instance of TokenizationActivityInfo from a dict
tokenization_activity_info_from_dict = TokenizationActivityInfo.from_dict(tokenization_activity_info_dict)

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