-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathcompany_scroll.py
More file actions
41 lines (32 loc) · 1.34 KB
/
company_scroll.py
File metadata and controls
41 lines (32 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
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..companies.types.company import Company
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
from .cursor_pages import CursorPages
class CompanyScroll(UncheckedBaseModel):
"""
Companies allow you to represent organizations using your product. Each company will have its own description and be associated with contacts. You can fetch, create, update and list companies.
"""
type: typing.Optional[typing.Literal["list"]] = pydantic.Field(default=None)
"""
The type of object - `list`
"""
data: typing.Optional[typing.List[Company]] = None
pages: typing.Optional[CursorPages] = None
total_count: typing.Optional[int] = pydantic.Field(default=None)
"""
The total number of companies
"""
scroll_param: typing.Optional[str] = pydantic.Field(default=None)
"""
The scroll parameter to use in the next request to fetch the next page of results.
"""
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