Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

ConfigChange.md

File metadata and controls

33 lines (24 loc) · 1.14 KB

ConfigChange

Properties

Name Type Description Notes
config_hash ConfigHash [optional]
last_change LastConfigChange [optional]
last_status LastStatusInfo [optional]
required_activity RequiredActivity [optional]
update_stamp int [optional]

Example

from akeyless.models.config_change import ConfigChange

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

# convert the object into a dict
config_change_dict = config_change_instance.to_dict()
# create an instance of ConfigChange from a dict
config_change_from_dict = ConfigChange.from_dict(config_change_dict)

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