openc2lib.types.data.feature

 1from openc2lib.types.base import Enumerated
 2
 3class Feature(Enumerated):
 4	""" OpenC2 Feature
 5
 6		An enumeration for the fields that can be included in the `Results` (see Sec. 3.4.2.4).
 7	"""
 8	versions   = 1
 9	profiles   = 2
10	pairs      = 3
11	rate_limit = 4
class Feature(openc2lib.types.base.enumerated.Enumerated):
 4class Feature(Enumerated):
 5	""" OpenC2 Feature
 6
 7		An enumeration for the fields that can be included in the `Results` (see Sec. 3.4.2.4).
 8	"""
 9	versions   = 1
10	profiles   = 2
11	pairs      = 3
12	rate_limit = 4

OpenC2 Feature

An enumeration for the fields that can be included in the Results (see Sec. 3.4.2.4).

versions = <Feature.versions: 1>
profiles = <Feature.profiles: 2>
pairs = <Feature.pairs: 3>
rate_limit = <Feature.rate_limit: 4>
Inherited Members
openc2lib.types.base.enumerated.Enumerated
todict
fromdict
aenum._enum.Enum
name
value
values