Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

TrustProofOfAddressCreateResponse

Response from creating a proof of address transaction

Properties

Name Type Description Notes
transaction_id str Transaction ID from Fireblocks (UUID format)
status TypedMessageTransactionStatusEnum

Example

from fireblocks.models.trust_proof_of_address_create_response import TrustProofOfAddressCreateResponse

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

# convert the object into a dict
trust_proof_of_address_create_response_dict = trust_proof_of_address_create_response_instance.to_dict()
# create an instance of TrustProofOfAddressCreateResponse from a dict
trust_proof_of_address_create_response_from_dict = TrustProofOfAddressCreateResponse.from_dict(trust_proof_of_address_create_response_dict)

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