Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

PolicyRuleDst.md

File metadata and controls

30 lines (21 loc) · 1002 Bytes

PolicyRuleDst

Defines the destination accounts the rule allows transfers to

Properties

Name Type Description Notes
ids List[List[SrcOrDestAttributesInner]] A set of ids in a tuple format [optional]

Example

from fireblocks.models.policy_rule_dst import PolicyRuleDst

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

# convert the object into a dict
policy_rule_dst_dict = policy_rule_dst_instance.to_dict()
# create an instance of PolicyRuleDst from a dict
policy_rule_dst_from_dict = PolicyRuleDst.from_dict(policy_rule_dst_dict)

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