Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.37 KB

File metadata and controls

32 lines (23 loc) · 1.37 KB

CreateTokenListingRequestRequest

Properties

Name Type Description Notes
wallet_type WalletType
wallet_subtype WalletSubtype
chain_id str The ID of the blockchain where the token is deployed.
contract_address str The token's contract address on the specified blockchain.

Example

from cobo_waas2.models.create_token_listing_request_request import CreateTokenListingRequestRequest

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

# convert the object into a dict
create_token_listing_request_request_dict = create_token_listing_request_request_instance.to_dict()
# create an instance of CreateTokenListingRequestRequest from a dict
create_token_listing_request_request_from_dict = CreateTokenListingRequestRequest.from_dict(create_token_listing_request_request_dict)

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