Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

CreateMigrationResponse

Response after creating a migration.

Properties

Name Type Description Notes
migration_id str Created migration ID
status MigrationStatus Current status
validation_result ValidationResult Validation result if available [optional]
created_at datetime Creation timestamp
message str Human-readable message

Example

from mixpeek.models.create_migration_response import CreateMigrationResponse

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

# convert the object into a dict
create_migration_response_dict = create_migration_response_instance.to_dict()
# create an instance of CreateMigrationResponse from a dict
create_migration_response_from_dict = CreateMigrationResponse.from_dict(create_migration_response_dict)

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