Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

TokenizationListTokenInfoResponse

Properties

Name Type Description Notes
data List[TokenizationTokenInfo] List tokens.
pagination Pagination

Example

from cobo_waas2.models.tokenization_list_token_info_response import TokenizationListTokenInfoResponse

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

# convert the object into a dict
tokenization_list_token_info_response_dict = tokenization_list_token_info_response_instance.to_dict()
# create an instance of TokenizationListTokenInfoResponse from a dict
tokenization_list_token_info_response_from_dict = TokenizationListTokenInfoResponse.from_dict(tokenization_list_token_info_response_dict)

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