| Name | Type | Description | Notes |
|---|---|---|---|
| new_parent_id | UUID |
from stratum.models.move_tenant_input import MoveTenantInput
# TODO update the JSON string below
json = "{}"
# create an instance of MoveTenantInput from a JSON string
move_tenant_input_instance = MoveTenantInput.from_json(json)
# print the JSON string representation of the object
print(MoveTenantInput.to_json())
# convert the object into a dict
move_tenant_input_dict = move_tenant_input_instance.to_dict()
# create an instance of MoveTenantInput from a dict
move_tenant_input_from_dict = MoveTenantInput.from_dict(move_tenant_input_dict)