Source code for cybox.objects.win_event_object

# Copyright (c) 2017, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.

from mixbox import entities
from mixbox import fields

import cybox.bindings.win_event_object as win_event_binding
from cybox.objects.win_handle_object import WinHandle
from cybox.common import ObjectProperties, String


[docs]class WinEvent(ObjectProperties): _binding = win_event_binding _binding_class = win_event_binding.WindowsEventObjectType _namespace = "http://cybox.mitre.org/objects#WinEventObject-2" _XSI_NS = "WinEventObj" _XSI_TYPE = "WindowsEventObjectType" name = fields.TypedField("Name", String) handle = fields.TypedField("Handle", WinHandle) type_ = fields.TypedField("Type", String)