Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

ScreeningPolicyResponse

Properties

Name Type Description Notes
policy TravelRulePolicyRuleResponse
policy_status str [optional]
is_default bool
create_date datetime [optional]
last_update datetime

Example

from fireblocks.models.screening_policy_response import ScreeningPolicyResponse

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

# convert the object into a dict
screening_policy_response_dict = screening_policy_response_instance.to_dict()
# create an instance of ScreeningPolicyResponse from a dict
screening_policy_response_from_dict = ScreeningPolicyResponse.from_dict(screening_policy_response_dict)

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