You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The address of the issuer of this token. Will be part of the identifier of this token on chain.
Example
fromfireblocks.models.stellar_ripple_create_params_dtoimportStellarRippleCreateParamsDto# TODO update the JSON string belowjson="{}"# create an instance of StellarRippleCreateParamsDto from a JSON stringstellar_ripple_create_params_dto_instance=StellarRippleCreateParamsDto.from_json(json)
# print the JSON string representation of the objectprint(StellarRippleCreateParamsDto.to_json())
# convert the object into a dictstellar_ripple_create_params_dto_dict=stellar_ripple_create_params_dto_instance.to_dict()
# create an instance of StellarRippleCreateParamsDto from a dictstellar_ripple_create_params_dto_from_dict=StellarRippleCreateParamsDto.from_dict(stellar_ripple_create_params_dto_dict)