Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 900 Bytes

File metadata and controls

29 lines (20 loc) · 900 Bytes

MoveTenantInput

Properties

Name Type Description Notes
new_parent_id UUID

Example

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)

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