Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

TenantExportData

Properties

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]

Example

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)

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