| Name | Type | Description | Notes |
|---|---|---|---|
| tenants | List[CreateTenantInput] |
from stratum.models.batch_create_tenants_input import BatchCreateTenantsInput
# TODO update the JSON string below
json = "{}"
# create an instance of BatchCreateTenantsInput from a JSON string
batch_create_tenants_input_instance = BatchCreateTenantsInput.from_json(json)
# print the JSON string representation of the object
print(BatchCreateTenantsInput.to_json())
# convert the object into a dict
batch_create_tenants_input_dict = batch_create_tenants_input_instance.to_dict()
# create an instance of BatchCreateTenantsInput from a dict
batch_create_tenants_input_from_dict = BatchCreateTenantsInput.from_dict(batch_create_tenants_input_dict)