Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 969 Bytes

RotatorsConfigPart.md

File metadata and controls

29 lines (20 loc) · 969 Bytes

RotatorsConfigPart

Properties

Name Type Description Notes
rotators List[Rotator] [optional]

Example

from akeyless.models.rotators_config_part import RotatorsConfigPart

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

# convert the object into a dict
rotators_config_part_dict = rotators_config_part_instance.to_dict()
# create an instance of RotatorsConfigPart from a dict
rotators_config_part_from_dict = RotatorsConfigPart.from_dict(rotators_config_part_dict)

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