Name |
Type |
Description |
Notes |
open_leadership |
List[int] |
|
[optional] |
from akeyless.models.leadership_config_part import LeadershipConfigPart
# TODO update the JSON string below
json = "{}"
# create an instance of LeadershipConfigPart from a JSON string
leadership_config_part_instance = LeadershipConfigPart.from_json(json)
# print the JSON string representation of the object
print(LeadershipConfigPart.to_json())
# convert the object into a dict
leadership_config_part_dict = leadership_config_part_instance.to_dict()
# create an instance of LeadershipConfigPart from a dict
leadership_config_part_from_dict = LeadershipConfigPart.from_dict(leadership_config_part_dict)
[Back to Model list] [Back to API list] [Back to README]