Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.37 KB

GetExchangeAccountsCredentialsPublicKeyResponse.md

File metadata and controls

30 lines (21 loc) · 1.37 KB

GetExchangeAccountsCredentialsPublicKeyResponse

Properties

Name Type Description Notes
public_key str Public key string
tenant_id str Tenant identifier

Example

from fireblocks.models.get_exchange_accounts_credentials_public_key_response import GetExchangeAccountsCredentialsPublicKeyResponse

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

# convert the object into a dict
get_exchange_accounts_credentials_public_key_response_dict = get_exchange_accounts_credentials_public_key_response_instance.to_dict()
# create an instance of GetExchangeAccountsCredentialsPublicKeyResponse from a dict
get_exchange_accounts_credentials_public_key_response_from_dict = GetExchangeAccountsCredentialsPublicKeyResponse.from_dict(get_exchange_accounts_credentials_public_key_response_dict)

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