Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.16 KB

File metadata and controls

36 lines (27 loc) · 1.16 KB

Target

An object representing a performance target for a line, product, and metric group.

Properties

Name Type Description Notes
metric_group MetricGroup [optional]
product Product [optional]
line Line [optional]
target_value float [optional]
lsl float [optional]
usl float [optional]
match Match [optional] [default to Match.UNIQUE]

Example

from oden.models.target import Target

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

# convert the object into a dict
target_dict = target_instance.to_dict()
# create an instance of Target from a dict
target_from_dict = Target.from_dict(target_dict)

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