Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.21 KB

File metadata and controls

35 lines (26 loc) · 1.21 KB

InitiatorConfig

Policy rule initiator configuration

Properties

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]

Example

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)

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