Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

TrustProofOfAddressResponse

Response containing the TRUST-compatible encoded signature

Properties

Name Type Description Notes
transaction_id str Transaction ID from Fireblocks (UUID format)
status TypedMessageTransactionStatusEnum
signature str TRUST-compatible encoded signature for proof of address verification.

Example

from fireblocks.models.trust_proof_of_address_response import TrustProofOfAddressResponse

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

# convert the object into a dict
trust_proof_of_address_response_dict = trust_proof_of_address_response_instance.to_dict()
# create an instance of TrustProofOfAddressResponse from a dict
trust_proof_of_address_response_from_dict = TrustProofOfAddressResponse.from_dict(trust_proof_of_address_response_dict)

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