Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.98 KB

File metadata and controls

39 lines (30 loc) · 1.98 KB

TRLinkRegistrationResultFullPayload

TRLink registration result containing status and metadata

Properties

Name Type Description Notes
status TRLinkRegistrationStatusEnum
provider str The TRLink provider name [optional]
success bool Whether the registration was successful [optional]
timestamp float Unix timestamp of the registration
dest_record_id str Destination record identifier [optional]
travel_rule_message_id str Travel rule message identifier for linking [optional]
customer_integration_id str Customer integration identifier [optional]
customer_short_name str Customer short name [optional]
result TRLinkProviderResult [optional]
matched_prescreening_rule ScreeningTRLinkPrescreeningRule [optional]

Example

from fireblocks.models.tr_link_registration_result_full_payload import TRLinkRegistrationResultFullPayload

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

# convert the object into a dict
tr_link_registration_result_full_payload_dict = tr_link_registration_result_full_payload_instance.to_dict()
# create an instance of TRLinkRegistrationResultFullPayload from a dict
tr_link_registration_result_full_payload_from_dict = TRLinkRegistrationResultFullPayload.from_dict(tr_link_registration_result_full_payload_dict)

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