aboutsummaryrefslogtreecommitdiffstats
path: root/python_openapi_client/fatcat_openapi_client/models/editgroup_annotation.pyi
blob: 59c05faa9c5c3aa9973681c4c56a7974c3a817df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from typing import Any

class EditgroupAnnotation:
    openapi_types: Any
    attribute_map: Any
    discriminator: Any
    def __init__(self, annotation_id: Any | None = ..., editgroup_id: Any | None = ..., editor_id: Any | None = ..., editor: Any | None = ..., created: Any | None = ..., comment_markdown: Any | None = ..., extra: Any | None = ...) -> None: ...
    @property
    def annotation_id(self): ...
    @annotation_id.setter
    def annotation_id(self, annotation_id) -> None: ...
    @property
    def editgroup_id(self): ...
    @editgroup_id.setter
    def editgroup_id(self, editgroup_id) -> None: ...
    @property
    def editor_id(self): ...
    @editor_id.setter
    def editor_id(self, editor_id) -> None: ...
    @property
    def editor(self): ...
    @editor.setter
    def editor(self, editor) -> None: ...
    @property
    def created(self): ...
    @created.setter
    def created(self, created) -> None: ...
    @property
    def comment_markdown(self): ...
    @comment_markdown.setter
    def comment_markdown(self, comment_markdown) -> None: ...
    @property
    def extra(self): ...
    @extra.setter
    def extra(self, extra) -> None: ...
    def to_dict(self): ...
    def to_str(self): ...
    def __eq__(self, other): ...
    def __ne__(self, other): ...