Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

File metadata and controls

36 lines (27 loc) · 1.22 KB

DataExport

Mixin to validate that a valid enterprise license exists before allowing to save the object

Properties

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]

Example

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)

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