Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ScreeningPolicyAmount

Amount specification with range and currency type (screening policy rules – BYORK, TRLink, etc.)

Properties

Name Type Description Notes
range ScreeningPolicyAmountRange
currency ScreeningPolicyCurrency

Example

from fireblocks.models.screening_policy_amount import ScreeningPolicyAmount

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

# convert the object into a dict
screening_policy_amount_dict = screening_policy_amount_instance.to_dict()
# create an instance of ScreeningPolicyAmount from a dict
screening_policy_amount_from_dict = ScreeningPolicyAmount.from_dict(screening_policy_amount_dict)

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