pyrealsense2.notification¶
- class pyrealsense2.notification¶
 - __init__(self: pyrealsense2.notification) None¶
 
Methods
__init__(self)get_category(self)Retrieve the notification's category.
get_description(self)Retrieve the notification's description.
get_serialized_data(self)Retrieve the notification's serialized data.
get_severity(self)Retrieve the notification's severity.
get_timestamp(self)Retrieve the notification's arrival timestamp.
Attributes
The notification's category.
The notification's description.
The notification's serialized data.
The notification's severity.
The notification's arrival timestamp.
- property category¶
 The notification’s category. Identical to calling get_category.
- property description¶
 The notification’s description. Identical to calling get_description.
- get_category(self: pyrealsense2.notification) pyrealsense2.notification_category¶
 Retrieve the notification’s category.
- get_description(self: pyrealsense2.notification) str¶
 Retrieve the notification’s description.
- get_serialized_data(self: pyrealsense2.notification) pyrealsense2.log_severity¶
 Retrieve the notification’s serialized data.
- get_severity(self: pyrealsense2.notification) pyrealsense2.log_severity¶
 Retrieve the notification’s severity.
- get_timestamp(self: pyrealsense2.notification) float¶
 Retrieve the notification’s arrival timestamp.
- property serialized_data¶
 The notification’s serialized data. Identical to calling get_serialized_data.
- property severity¶
 The notification’s severity. Identical to calling get_severity.
- property timestamp¶
 The notification’s arrival timestamp. Identical to calling get_timestamp.