Source account configuration for policy rules
| Name | Type | Description | Notes |
|---|---|---|---|
| type | List[AccountType2] | Source account types | [optional] |
| sub_type | List[AccountIdentifier] | Source account subtypes | [optional] |
| ids | List[AccountIdentifier] | Source account identifiers | [optional] |
| tags | List[PolicyTag] | Tags for source matching | [optional] |
| operator | PolicyOperator | ||
| match_from | str | Whether to match from account (relevant only for ORDER policy type) | [optional] |
from fireblocks.models.source_config import SourceConfig
# TODO update the JSON string below
json = "{}"
# create an instance of SourceConfig from a JSON string
source_config_instance = SourceConfig.from_json(json)
# print the JSON string representation of the object
print(SourceConfig.to_json())
# convert the object into a dict
source_config_dict = source_config_instance.to_dict()
# create an instance of SourceConfig from a dict
source_config_from_dict = SourceConfig.from_dict(source_config_dict)