Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

AuthorizationInfo.md

File metadata and controls

32 lines (23 loc) · 1.2 KB

AuthorizationInfo

The information about your Transaction Authorization Policy (TAP).

Properties

Name Type Description Notes
allow_operator_as_authorizer bool [optional]
logic str [optional]
groups List[AuthorizationGroups] [optional]

Example

from fireblocks.models.authorization_info import AuthorizationInfo

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

# convert the object into a dict
authorization_info_dict = authorization_info_instance.to_dict()
# create an instance of AuthorizationInfo from a dict
authorization_info_from_dict = AuthorizationInfo.from_dict(authorization_info_dict)

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