| Name | Type | Description | Notes |
|---|---|---|---|
| chain_id | str | The chain ID where the token will be issued. | |
| source | TokenizationTokenOperationSource | ||
| token_params | TokenizationIssueTokenParamsTokenParams | ||
| app_initiator | str | The initiator of the tokenization activity. If you do not specify this property, the WaaS service will automatically designate the API key as the initiator. | [optional] |
| fee | TransactionRequestFee | ||
| request_id | str | The request ID that is used to track a transaction request. The request ID is provided by you and must be unique within your organization. | [optional] |
from cobo_waas2.models.tokenization_issued_token_request import TokenizationIssuedTokenRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TokenizationIssuedTokenRequest from a JSON string
tokenization_issued_token_request_instance = TokenizationIssuedTokenRequest.from_json(json)
# print the JSON string representation of the object
print(TokenizationIssuedTokenRequest.to_json())
# convert the object into a dict
tokenization_issued_token_request_dict = tokenization_issued_token_request_instance.to_dict()
# create an instance of TokenizationIssuedTokenRequest from a dict
tokenization_issued_token_request_from_dict = TokenizationIssuedTokenRequest.from_dict(tokenization_issued_token_request_dict)