kittycad.models.annotation_type.AnnotationType

class kittycad.models.annotation_type.AnnotationType(value)[source][source]

Bases: str, Enum

The type of annotation

__init__()[source]

Attributes

T2D

# 3D annotation type

T3D

T2D = 't2d'[source]

# 3D annotation type

T3D = 't3d'[source]
__annotations__ = {}[source]
__dict__ = mappingproxy({'_generate_next_value_': <function Enum._generate_next_value_>, '__module__': 'kittycad.models.annotation_type', '__doc__': 'The type of annotation', '__str__': <function AnnotationType.__str__>, '__dict__': <attribute '__dict__' of 'AnnotationType' objects>, '__weakref__': <attribute '__weakref__' of 'AnnotationType' objects>, '_member_names_': ['T2D', 'T3D'], '_member_map_': {'T2D': <AnnotationType.T2D: 't2d'>, 'T3D': <AnnotationType.T3D: 't3d'>}, '_member_type_': <class 'str'>, '_value2member_map_': {'t2d': <AnnotationType.T2D: 't2d'>, 't3d': <AnnotationType.T3D: 't3d'>}, 'T2D': <AnnotationType.T2D: 't2d'>, 'T3D': <AnnotationType.T3D: 't3d'>, '__repr__': <function Enum.__repr__>, '__format__': <function Enum.__format__>, '__new__': <function Enum.__new__>, '__annotations__': {}})[source]
__module__ = 'kittycad.models.annotation_type'[source]
_generate_next_value_(start, count, last_values)[source]

Generate the next value when not given.

name: the name of the member start: the initial start value or None count: the number of existing members last_value: the last value assigned or None

_member_map_ = {'T2D': AnnotationType.T2D, 'T3D': AnnotationType.T3D}[source]
_member_names_ = ['T2D', 'T3D'][source]
_member_type_[source]

alias of str

_value2member_map_ = {'t2d': AnnotationType.T2D, 't3d': AnnotationType.T3D}[source]