Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1009 Bytes

File metadata and controls

34 lines (25 loc) · 1009 Bytes

Line

An entity representing a single line of production.

Properties

Name Type Description Notes
id UUID [optional]
name str [optional]
secondary_name str [optional]
factory Factory [optional]
match Match [optional] [default to Match.UNIQUE]

Example

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)

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