lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

SourceFile

A SourceFile is an unprocessed source file that can later be added to a project.

Properties

Name Type Description Notes
id int A unique number identifying the SourceFile. [optional]
name str The file name. [optional]
file_hash str A unique hash value associated with the file. An MD5 hash of the file content will be used by default. [optional]
detected_lang str Language associated with the file. [optional]
detected_lang_confidence float Confidence score for the language associated with the file. [optional]
category str The category of the file. The options are `REFERENCE`, or `API`. The default is API. Files with the `REFERENCE` category will be displayed as reference material. [optional]
labels List[str] The list of labels associated with the file. [optional]
created_at datetime Time at which the object was created. [optional]
updated_at datetime Time at which the object was created. [optional]

Example

from lilt.models.source_file import SourceFile

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

# convert the object into a dict
source_file_dict = source_file_instance.to_dict()
# create an instance of SourceFile from a dict
source_file_from_dict = SourceFile.from_dict(source_file_dict)

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