Policy account configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| type | List[AccountType2] | Account types | [optional] |
| sub_type | List[AccountIdentifier] | [optional] | |
| ids | List[AccountIdentifier] | [optional] | |
| tags | List[PolicyTag] | Tags for account matching | [optional] |
| operator | PolicyOperator | ||
| match_from | str | Whether to match from account or source | [optional] |
from fireblocks.models.account_config import AccountConfig
# TODO update the JSON string below
json = "{}"
# create an instance of AccountConfig from a JSON string
account_config_instance = AccountConfig.from_json(json)
# print the JSON string representation of the object
print(AccountConfig.to_json())
# convert the object into a dict
account_config_dict = account_config_instance.to_dict()
# create an instance of AccountConfig from a dict
account_config_from_dict = AccountConfig.from_dict(account_config_dict)