Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 996 Bytes

NextAutoRotationEvent.md

File metadata and controls

29 lines (20 loc) · 996 Bytes

NextAutoRotationEvent

Properties

Name Type Description Notes
seconds_before int [optional]

Example

from akeyless.models.next_auto_rotation_event import NextAutoRotationEvent

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

# convert the object into a dict
next_auto_rotation_event_dict = next_auto_rotation_event_instance.to_dict()
# create an instance of NextAutoRotationEvent from a dict
next_auto_rotation_event_from_dict = NextAutoRotationEvent.from_dict(next_auto_rotation_event_dict)

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