Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

CreateTokenRequestDto.md

File metadata and controls

33 lines (24 loc) · 1.38 KB

CreateTokenRequestDto

Properties

Name Type Description Notes
blockchain_id str The id of the blockchain the request was initiated on [optional]
asset_id str The base asset identifier of the blockchain you want to deploy to [optional]
vault_account_id str The id of the vault account that initiated the request to issue the token
create_params CreateTokenRequestDtoCreateParams
display_name str [optional]

Example

from fireblocks.models.create_token_request_dto import CreateTokenRequestDto

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

# convert the object into a dict
create_token_request_dto_dict = create_token_request_dto_instance.to_dict()
# create an instance of CreateTokenRequestDto from a dict
create_token_request_dto_from_dict = CreateTokenRequestDto.from_dict(create_token_request_dto_dict)

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