Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

TokenizationEstimateFeeRequest

Properties

Name Type Description Notes
operation_params TokenizationEstimateFeeRequestOperationParams

Example

from cobo_waas2.models.tokenization_estimate_fee_request import TokenizationEstimateFeeRequest

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

# convert the object into a dict
tokenization_estimate_fee_request_dict = tokenization_estimate_fee_request_instance.to_dict()
# create an instance of TokenizationEstimateFeeRequest from a dict
tokenization_estimate_fee_request_from_dict = TokenizationEstimateFeeRequest.from_dict(tokenization_estimate_fee_request_dict)

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