Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

ApproversConfig

Approvers configuration

Properties

Name Type Description Notes
can_initiator_approve bool Whether initiator can approve
operator str Operator for approval groups [optional]
allow_operator_as_authorizer bool Whether operator can be authorizer [optional]
approval_groups List[ApproversConfigApprovalGroupsInner] List of approval groups [optional]

Example

from fireblocks.models.approvers_config import ApproversConfig

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

# convert the object into a dict
approvers_config_dict = approvers_config_instance.to_dict()
# create an instance of ApproversConfig from a dict
approvers_config_from_dict = ApproversConfig.from_dict(approvers_config_dict)

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