Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

TRLinkPublicKeyResponse

Properties

Name Type Description Notes
issuer str Partner issuer identifier
public_key TRLinkJwkPublicKey

Example

from fireblocks.models.tr_link_public_key_response import TRLinkPublicKeyResponse

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

# convert the object into a dict
tr_link_public_key_response_dict = tr_link_public_key_response_instance.to_dict()
# create an instance of TRLinkPublicKeyResponse from a dict
tr_link_public_key_response_from_dict = TRLinkPublicKeyResponse.from_dict(tr_link_public_key_response_dict)

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