An entity representing a single line of production.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [optional] | |
| name | str | [optional] | |
| secondary_name | str | [optional] | |
| factory | Factory | [optional] | |
| match | Match | [optional] [default to Match.UNIQUE] |
from oden.models.line import Line
# TODO update the JSON string below
json = "{}"
# create an instance of Line from a JSON string
line_instance = Line.from_json(json)
# print the JSON string representation of the object
print(Line.to_json())
# convert the object into a dict
line_dict = line_instance.to_dict()
# create an instance of Line from a dict
line_from_dict = Line.from_dict(line_dict)