Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 984 Bytes

LeadershipConfigPart.md

File metadata and controls

29 lines (20 loc) · 984 Bytes

LeadershipConfigPart

Properties

Name Type Description Notes
open_leadership List[int] [optional]

Example

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]