Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.55 KB

PolicyRuleAmountAggregation.md

File metadata and controls

32 lines (23 loc) · 1.55 KB

PolicyRuleAmountAggregation

Defines the method by which the Policy Engine calculates accumulation. It uses the Initiator, Source, and Destination to calculate accumulation toward the value under Minimum, for the time under Time Period.

Properties

Name Type Description Notes
operators AmountAggregationTimePeriodMethod [optional]
src_transfer_peers AmountAggregationTimePeriodMethod [optional]
dst_transfer_peers AmountAggregationTimePeriodMethod [optional]

Example

from fireblocks.models.policy_rule_amount_aggregation import PolicyRuleAmountAggregation

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

# convert the object into a dict
policy_rule_amount_aggregation_dict = policy_rule_amount_aggregation_instance.to_dict()
# create an instance of PolicyRuleAmountAggregation from a dict
policy_rule_amount_aggregation_from_dict = PolicyRuleAmountAggregation.from_dict(policy_rule_amount_aggregation_dict)

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