Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

StellarRippleCreateParamsDto.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

StellarRippleCreateParamsDto

Properties

Name Type Description Notes
symbol str The symbol of the token
name str The name of the token
issuer_address str The address of the issuer of this token. Will be part of the identifier of this token on chain.

Example

from fireblocks.models.stellar_ripple_create_params_dto import StellarRippleCreateParamsDto

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

# convert the object into a dict
stellar_ripple_create_params_dto_dict = stellar_ripple_create_params_dto_instance.to_dict()
# create an instance of StellarRippleCreateParamsDto from a dict
stellar_ripple_create_params_dto_from_dict = StellarRippleCreateParamsDto.from_dict(stellar_ripple_create_params_dto_dict)

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