Mixin to validate that a valid enterprise license exists before allowing to save the object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| requested_by | PartialUser | [readonly] | |
| requested_on | datetime | [readonly] | |
| content_type | ContentType | [readonly] | |
| var_query_params | Dict[str, object] | ||
| file_url | str | [readonly] | |
| completed | bool | [readonly] |
from authentik_client.models.data_export import DataExport
# TODO update the JSON string below
json = "{}"
# create an instance of DataExport from a JSON string
data_export_instance = DataExport.from_json(json)
# print the JSON string representation of the object
print(DataExport.to_json())
# convert the object into a dict
data_export_dict = data_export_instance.to_dict()
# create an instance of DataExport from a dict
data_export_from_dict = DataExport.from_dict(data_export_dict)