Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

TokenizationUnpauseTokenParams

Properties

Name Type Description Notes
source TokenizationTokenOperationSource

Example

from cobo_waas2.models.tokenization_unpause_token_params import TokenizationUnpauseTokenParams

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

# convert the object into a dict
tokenization_unpause_token_params_dict = tokenization_unpause_token_params_instance.to_dict()
# create an instance of TokenizationUnpauseTokenParams from a dict
tokenization_unpause_token_params_from_dict = TokenizationUnpauseTokenParams.from_dict(tokenization_unpause_token_params_dict)

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