Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

BatchCreateTenantsInput

Properties

Name Type Description Notes
tenants List[CreateTenantInput]

Example

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)

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