Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

GatewayMigrationDeleteOutput.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

GatewayMigrationDeleteOutput

Properties

Name Type Description Notes
migration_id str [optional]

Example

from akeyless.models.gateway_migration_delete_output import GatewayMigrationDeleteOutput

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

# convert the object into a dict
gateway_migration_delete_output_dict = gateway_migration_delete_output_instance.to_dict()
# create an instance of GatewayMigrationDeleteOutput from a dict
gateway_migration_delete_output_from_dict = GatewayMigrationDeleteOutput.from_dict(gateway_migration_delete_output_dict)

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