-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathnote.py
More file actions
54 lines (42 loc) · 1.43 KB
/
note.py
File metadata and controls
54 lines (42 loc) · 1.43 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ....core.pydantic_utilities import IS_PYDANTIC_V2
from ....core.unchecked_base_model import UncheckedBaseModel
from ...admins.types.admin import Admin
from .note_contact import NoteContact
class Note(UncheckedBaseModel):
"""
Notes allow you to annotate and comment on your contacts.
"""
type: typing.Optional[str] = pydantic.Field(default=None)
"""
String representing the object's type. Always has the value `note`.
"""
id: typing.Optional[str] = pydantic.Field(default=None)
"""
The id of the note.
"""
created_at: typing.Optional[int] = pydantic.Field(default=None)
"""
The time the note was created.
"""
contact: typing.Optional[NoteContact] = pydantic.Field(default=None)
"""
Represents the contact that the note was created about.
"""
author: typing.Optional[Admin] = pydantic.Field(default=None)
"""
Optional. Represents the Admin that created the note.
"""
body: typing.Optional[str] = pydantic.Field(default=None)
"""
The body text of the note.
"""
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow