Source code for cybox.objects.pipe_object

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

import cybox
import cybox.bindings.pipe_object as pipe_binding
from cybox.common import ObjectProperties, String

[docs]class Pipe(ObjectProperties): _namespace = 'http://cybox.mitre.org/objects#PipeObject-2' _XSI_NS = "PipeObj" _XSI_TYPE = "PipeObjectType" _binding = pipe_binding _binding_class = pipe_binding.PipeObjectType name = cybox.TypedField("Name", String) named = cybox.TypedField("named") def __init__(self): super(Pipe, self).__init__() self.named = None

Related Documentation