Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.33 KB

TenantFilters.md

File metadata and controls

39 lines (30 loc) · 1.33 KB

TenantFilters

Properties

Name Type Description Notes
ids List[str] [optional]
names List[str] [optional]
tenant_states List[str] [optional]
short_ids List[str] [optional]
regions List[str] [optional]
org_ids List[str] [optional]
status_reasons List[str] [optional]
expiry_date datetime [optional]
plans List[str] [optional]
billing_owners List[str] [optional]
billing_types List[str] [optional]

Example

from onelens_backend_client.models.tenant_filters import TenantFilters

# TODO update the JSON string below
json = "{}"
# create an instance of TenantFilters from a JSON string
tenant_filters_instance = TenantFilters.from_json(json)
# print the JSON string representation of the object
print(TenantFilters.to_json())

# convert the object into a dict
tenant_filters_dict = tenant_filters_instance.to_dict()
# create an instance of TenantFilters from a dict
tenant_filters_form_dict = tenant_filters.from_dict(tenant_filters_dict)

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