Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 980 Bytes

File metadata and controls

32 lines (23 loc) · 980 Bytes

BlueprintFile

Properties

Name Type Description Notes
path str
last_m datetime
hash str
meta Metadata [readonly]

Example

from authentik_client.models.blueprint_file import BlueprintFile

# TODO update the JSON string below
json = "{}"
# create an instance of BlueprintFile from a JSON string
blueprint_file_instance = BlueprintFile.from_json(json)
# print the JSON string representation of the object
print(BlueprintFile.to_json())

# convert the object into a dict
blueprint_file_dict = blueprint_file_instance.to_dict()
# create an instance of BlueprintFile from a dict
blueprint_file_from_dict = BlueprintFile.from_dict(blueprint_file_dict)

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