Request to start a migration.
| Name | Type | Description | Notes |
|---|---|---|---|
| force | bool | Force start even if validation warnings exist | [optional] [default to False] |
from mixpeek.models.start_migration_request import StartMigrationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of StartMigrationRequest from a JSON string
start_migration_request_instance = StartMigrationRequest.from_json(json)
# print the JSON string representation of the object
print(StartMigrationRequest.to_json())
# convert the object into a dict
start_migration_request_dict = start_migration_request_instance.to_dict()
# create an instance of StartMigrationRequest from a dict
start_migration_request_from_dict = StartMigrationRequest.from_dict(start_migration_request_dict)