Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

MigrationItems.md

File metadata and controls

33 lines (24 loc) · 1.02 KB

MigrationItems

Properties

Name Type Description Notes
failed int [optional]
migrated int [optional]
skipped int [optional]
total int [optional]
updated int [optional]

Example

from akeyless.models.migration_items import MigrationItems

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

# convert the object into a dict
migration_items_dict = migration_items_instance.to_dict()
# create an instance of MigrationItems from a dict
migration_items_from_dict = MigrationItems.from_dict(migration_items_dict)

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