lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

GetLiltCreateContentResponse

Properties

Name Type Description Notes
contents List[LiltCreateContent] List of LiltCreateContent objects [optional]

Example

from lilt.models.get_lilt_create_content_response import GetLiltCreateContentResponse

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

# convert the object into a dict
get_lilt_create_content_response_dict = get_lilt_create_content_response_instance.to_dict()
# create an instance of GetLiltCreateContentResponse from a dict
get_lilt_create_content_response_from_dict = GetLiltCreateContentResponse.from_dict(get_lilt_create_content_response_dict)

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