ableton.v3.control_surface.display.notifications.meta (runtime)¶
Live 11 — Live Object Model & framework reference (descriptions and signatures).
Module constants¶
annotations = _Feature((3, 7, 0, 'beta', 1), (4, 0, 0, 'alpha', 0), 1048576)
Functions¶
Callable(*args, **kwargs)¶
Callable type; Callable[[int], str] is a function of (int) -> str.
The subscription syntax must always be used with exactly two values: the argument list and the return type. The argument list must be a list of types or ellipsis; the return type must be a single type.
There is no syntax to indicate optional or keyword arguments, such function types are rarely used as callback types.
Notification(*args, **kwargs)¶
getmro(cls)¶
transform_notification(default: 'Notification', transform_fn: 'Callable[[str], str]')¶
update_special_attributes(cls, exclude_by_default=True)¶
Classes¶
class DefaultNotificationsMeta(type)¶
type(object_or_name, bases, dict) type(object) -> the object's type type(name, bases, dict) -> a new type
Methods¶
__call__(self, /, *args, **kwargs)¶
Call self as a function.
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
mro(self, /)¶
Return a type's method resolution order.