Complete user personal data export structure
| Name | Type | Description | Notes |
|---|---|---|---|
| export_metadata | DataExportDataExportMetadata | ||
| user_profile | DataExportDataUserProfile | ||
| company_associations | List[DataExportDataCompanyAssociationsInner] | ||
| credentials | List[DataExportDataCredentialsInner] | Credential metadata only (no actual passwords/secrets) | |
| activity_logs | List[DataExportDataActivityLogsInner] | ||
| job_history | List[DataExportDataJobHistoryInner] | ||
| consent_records | DataExportDataConsentRecords | ||
| session_history | DataExportDataSessionHistory | ||
| audit_trails | DataExportDataAuditTrails |
from multiflexi_client.models.data_export_data import DataExportData
# TODO update the JSON string below
json = "{}"
# create an instance of DataExportData from a JSON string
data_export_data_instance = DataExportData.from_json(json)
# print the JSON string representation of the object
print(DataExportData.to_json())
# convert the object into a dict
data_export_data_dict = data_export_data_instance.to_dict()
# create an instance of DataExportData from a dict
data_export_data_from_dict = DataExportData.from_dict(data_export_data_dict)