You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VersionSettingsObjectType defines object types for account version settings
[optional]
max_versions
str
[optional]
Example
fromakeyless.models.object_version_settings_outputimportObjectVersionSettingsOutput# TODO update the JSON string belowjson="{}"# create an instance of ObjectVersionSettingsOutput from a JSON stringobject_version_settings_output_instance=ObjectVersionSettingsOutput.from_json(json)
# print the JSON string representation of the objectprint(ObjectVersionSettingsOutput.to_json())
# convert the object into a dictobject_version_settings_output_dict=object_version_settings_output_instance.to_dict()
# create an instance of ObjectVersionSettingsOutput from a dictobject_version_settings_output_from_dict=ObjectVersionSettingsOutput.from_dict(object_version_settings_output_dict)