-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdirectory_response.py
More file actions
57 lines (44 loc) · 1.46 KB
/
directory_response.py
File metadata and controls
57 lines (44 loc) · 1.46 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
55
56
57
# This file was auto-generated by Fern from our API Definition.
import datetime as dt
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
class DirectoryResponse(UncheckedBaseModel):
id: str = pydantic.Field()
"""
String ID of directory. Starts with `dir_`.
"""
parent_id: typing.Optional[str] = pydantic.Field(default=None)
"""
ID of the parent directory. Will be `None` if the directory is the root directory. Starts with `dir_`.
"""
name: str = pydantic.Field()
"""
Name of the directory.
"""
description: typing.Optional[str] = pydantic.Field(default=None)
"""
Description of the directory.
"""
path: str = pydantic.Field()
"""
Path to the directory, relative to the root directory. Includes name, e.g. `path/to/directory`.
"""
readme: typing.Optional[str] = pydantic.Field(default=None)
"""
Long description of the directory.
"""
tags: typing.List[str] = pydantic.Field()
"""
List of tags associated with the directory.
"""
created_at: dt.datetime
updated_at: dt.datetime
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