Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 908 Bytes

ImporterInfo.md

File metadata and controls

30 lines (21 loc) · 908 Bytes

ImporterInfo

Properties

Name Type Description Notes
external_item_id str [optional]
version int [optional]

Example

from akeyless.models.importer_info import ImporterInfo

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

# convert the object into a dict
importer_info_dict = importer_info_instance.to_dict()
# create an instance of ImporterInfo from a dict
importer_info_from_dict = ImporterInfo.from_dict(importer_info_dict)

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