kittycad.models.annotation_line_end.AnnotationLineEnd

class kittycad.models.annotation_line_end.AnnotationLineEnd(value)[source][source]

Bases: str, Enum

Annotation line end type

__init__()[source]

Attributes

NONE

ARROW

ARROW = 'arrow'[source]
NONE = 'none'[source]
__annotations__ = {}[source]
__dict__ = mappingproxy({'_generate_next_value_': <function Enum._generate_next_value_>, '__module__': 'kittycad.models.annotation_line_end', '__doc__': 'Annotation line end type', '__str__': <function AnnotationLineEnd.__str__>, '__dict__': <attribute '__dict__' of 'AnnotationLineEnd' objects>, '__weakref__': <attribute '__weakref__' of 'AnnotationLineEnd' objects>, '_member_names_': ['NONE', 'ARROW'], '_member_map_': {'NONE': <AnnotationLineEnd.NONE: 'none'>, 'ARROW': <AnnotationLineEnd.ARROW: 'arrow'>}, '_member_type_': <class 'str'>, '_value2member_map_': {'none': <AnnotationLineEnd.NONE: 'none'>, 'arrow': <AnnotationLineEnd.ARROW: 'arrow'>}, 'NONE': <AnnotationLineEnd.NONE: 'none'>, 'ARROW': <AnnotationLineEnd.ARROW: 'arrow'>, '__repr__': <function Enum.__repr__>, '__format__': <function Enum.__format__>, '__new__': <function Enum.__new__>, '__annotations__': {}})[source]
__module__ = 'kittycad.models.annotation_line_end'[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_ = {'ARROW': AnnotationLineEnd.ARROW, 'NONE': AnnotationLineEnd.NONE}[source]
_member_names_ = ['NONE', 'ARROW'][source]
_member_type_[source]

alias of str

_value2member_map_ = {'arrow': AnnotationLineEnd.ARROW, 'none': AnnotationLineEnd.NONE}[source]