-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathcontact_notes.py
More file actions
43 lines (33 loc) · 1.34 KB
/
contact_notes.py
File metadata and controls
43 lines (33 loc) · 1.34 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
# 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 .addressable_list import AddressableList
class ContactNotes(UncheckedBaseModel):
"""
An object containing notes meta data about the notes that a contact has. Up to 10 will be displayed here. Use the url to get more.
"""
data: typing.Optional[typing.List[AddressableList]] = pydantic.Field(default=None)
"""
This object represents the notes attached to a contact.
"""
url: typing.Optional[str] = pydantic.Field(default=None)
"""
Url to get more company resources for this contact
"""
total_count: typing.Optional[int] = pydantic.Field(default=None)
"""
Int representing the total number of companyies attached to this contact
"""
has_more: typing.Optional[bool] = pydantic.Field(default=None)
"""
Whether there's more Addressable Objects to be viewed. If true, use the url to view all
"""
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