Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.38 KB

File metadata and controls

29 lines (20 loc) · 1.38 KB

CreateTokenListingRequest201Response

Properties

Name Type Description Notes
request_id str The unique identifier for the token listing request. You can use it to track the request status with the Get token listing request operation.

Example

from cobo_waas2.models.create_token_listing_request201_response import CreateTokenListingRequest201Response

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

# convert the object into a dict
create_token_listing_request201_response_dict = create_token_listing_request201_response_instance.to_dict()
# create an instance of CreateTokenListingRequest201Response from a dict
create_token_listing_request201_response_from_dict = CreateTokenListingRequest201Response.from_dict(create_token_listing_request201_response_dict)

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