Source code for cybox.objects.custom_object

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

from mixbox import fields

import cybox.bindings.custom_object as custom_binding
from cybox.common import ObjectProperties, StructuredText


[docs]class Custom(ObjectProperties): _binding = custom_binding _binding_class = custom_binding.CustomObjectType _namespace = "http://cybox.mitre.org/objects#CustomObject-1" _XSI_NS = "CustomObj" _XSI_TYPE = "CustomObjectType" custom_name = fields.TypedField("custom_name") description = fields.TypedField("Description", StructuredText)