lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

DomainReference

Properties

Name Type Description Notes
id int The unique identifier for the domain. [optional]
name str The name of the domain. [optional]

Example

from lilt.models.domain_reference import DomainReference

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

# convert the object into a dict
domain_reference_dict = domain_reference_instance.to_dict()
# create an instance of DomainReference from a dict
domain_reference_from_dict = DomainReference.from_dict(domain_reference_dict)

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