LogFile

Properties

Name Type Description Notes
date_created datetime Gets or sets the date created. [optional]
date_modified datetime Gets or sets the date modified. [optional]
size int Gets or sets the size. [optional]
name str Gets or sets the name. [optional]

Example

from jellyfin.generated.api_10_10.models.log_file import LogFile

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

# convert the object into a dict
log_file_dict = log_file_instance.to_dict()
# create an instance of LogFile from a dict
log_file_from_dict = LogFile.from_dict(log_file_dict)

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