API bindings for the Lilt REST API.
Name | Type | Description | Notes |
---|---|---|---|
contents | List[LiltCreateContent] | List of LiltCreateContent objects | [optional] |
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)