Policy rule initiator configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| users | List[str] | List of user IDs | [optional] |
| groups | List[str] | List of policy group IDs | [optional] |
| services | List[str] | [optional] | |
| fb_admin_groups | List[str] | [optional] | |
| exchange | List[str] | [optional] | |
| operator | PolicyOperator | [optional] |
from fireblocks.models.initiator_config import InitiatorConfig
# TODO update the JSON string below
json = "{}"
# create an instance of InitiatorConfig from a JSON string
initiator_config_instance = InitiatorConfig.from_json(json)
# print the JSON string representation of the object
print(InitiatorConfig.to_json())
# convert the object into a dict
initiator_config_dict = initiator_config_instance.to_dict()
# create an instance of InitiatorConfig from a dict
initiator_config_from_dict = InitiatorConfig.from_dict(initiator_config_dict)