Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

LegacyPolicyRuleDesignatedSigners

Set of ids representing the users who signs transactions that match a specific rule

Properties

Name Type Description Notes
users List[str] Set of users ids [optional]
users_groups List[str] Set of group ids [optional]

Example

from fireblocks.models.legacy_policy_rule_designated_signers import LegacyPolicyRuleDesignatedSigners

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

# convert the object into a dict
legacy_policy_rule_designated_signers_dict = legacy_policy_rule_designated_signers_instance.to_dict()
# create an instance of LegacyPolicyRuleDesignatedSigners from a dict
legacy_policy_rule_designated_signers_from_dict = LegacyPolicyRuleDesignatedSigners.from_dict(legacy_policy_rule_designated_signers_dict)

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