Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 989 Bytes

HashiMigration.md

File metadata and controls

30 lines (21 loc) · 989 Bytes

HashiMigration

Properties

Name Type Description Notes
general MigrationGeneral [optional]
payload HashiPayload [optional]

Example

from akeyless.models.hashi_migration import HashiMigration

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

# convert the object into a dict
hashi_migration_dict = hashi_migration_instance.to_dict()
# create an instance of HashiMigration from a dict
hashi_migration_from_dict = HashiMigration.from_dict(hashi_migration_dict)

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