InputType

class InputType(value)[source][source]

Bases: Enum

How parameter values are delivered to the OPX during program execution.

classmethod from_string(value: str | None) InputType | None[source][source]

Parse an input type from its string value.

Parameters:

value – Enum value string (e.g. "INPUT_STREAM") or None.

Returns:

Matching InputType, or None when value is None.

Raises:

ValueError – If the string does not match a known input type.