Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1015 Bytes

File metadata and controls

30 lines (21 loc) · 1015 Bytes

GroupSignerSettings

Properties

Name Type Description Notes
enabled bool [optional]
allowed_directories List[str] [optional]

Example

from boldsign.models.group_signer_settings import GroupSignerSettings

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

# convert the object into a dict
group_signer_settings_dict = group_signer_settings_instance.to_dict()
# create an instance of GroupSignerSettings from a dict
group_signer_settings_from_dict = GroupSignerSettings.from_dict(group_signer_settings_dict)

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