| Name | Type | Description | Notes |
|---|---|---|---|
| tenant | Tenant | ||
| config | Dict[str, object] | [optional] | |
| permissions | List[PermissionPolicy] | [optional] | |
| consent_records | List[ConsentRecord] | [optional] | |
| audit_logs | List[AuditLogEntry] | [optional] |
from stratum.models.tenant_export_data import TenantExportData
# TODO update the JSON string below
json = "{}"
# create an instance of TenantExportData from a JSON string
tenant_export_data_instance = TenantExportData.from_json(json)
# print the JSON string representation of the object
print(TenantExportData.to_json())
# convert the object into a dict
tenant_export_data_dict = tenant_export_data_instance.to_dict()
# create an instance of TenantExportData from a dict
tenant_export_data_from_dict = TenantExportData.from_dict(tenant_export_data_dict)