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 unique identifier for the token listing request. You can use it to track the request status with the Get token listing request operation.
Example
fromcobo_waas2.models.create_token_listing_request201_responseimportCreateTokenListingRequest201Response# TODO update the JSON string belowjson="{}"# create an instance of CreateTokenListingRequest201Response from a JSON stringcreate_token_listing_request201_response_instance=CreateTokenListingRequest201Response.from_json(json)
# print the JSON string representation of the objectprint(CreateTokenListingRequest201Response.to_json())
# convert the object into a dictcreate_token_listing_request201_response_dict=create_token_listing_request201_response_instance.to_dict()
# create an instance of CreateTokenListingRequest201Response from a dictcreate_token_listing_request201_response_from_dict=CreateTokenListingRequest201Response.from_dict(create_token_listing_request201_response_dict)