Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

TRLinkProviderResultWithRule

Provider response and matched rule wrapper for TRLink screening results

Properties

Name Type Description Notes
provider_response object Raw provider response [optional]
matched_rule TRLinkPostScreeningRule [optional]

Example

from fireblocks.models.tr_link_provider_result_with_rule import TRLinkProviderResultWithRule

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

# convert the object into a dict
tr_link_provider_result_with_rule_dict = tr_link_provider_result_with_rule_instance.to_dict()
# create an instance of TRLinkProviderResultWithRule from a dict
tr_link_provider_result_with_rule_from_dict = TRLinkProviderResultWithRule.from_dict(tr_link_provider_result_with_rule_dict)

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