File tree 4 files changed +7
-7
lines changed 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
ApidataDocumentCollection ,
9
9
ApidataDocumentSearchResponse ,
10
10
ApidataDocumentWithScore ,
11
- ApidataEntityEdgeSourceTarget ,
12
11
ClassifySessionRequest ,
13
12
CreateDocumentRequest ,
14
13
EdgeType ,
15
14
EndSessionResponse ,
16
15
EndSessionsResponse ,
17
16
EntityEdge ,
17
+ EntityEdgeSourceTarget ,
18
18
EntityNode ,
19
19
EntityProperty ,
20
20
EntityPropertyType ,
72
72
"ApidataDocumentCollection" ,
73
73
"ApidataDocumentSearchResponse" ,
74
74
"ApidataDocumentWithScore" ,
75
- "ApidataEntityEdgeSourceTarget" ,
76
75
"BadRequestError" ,
77
76
"ClassifySessionRequest" ,
78
77
"ConflictError" ,
81
80
"EndSessionResponse" ,
82
81
"EndSessionsResponse" ,
83
82
"EntityEdge" ,
83
+ "EntityEdgeSourceTarget" ,
84
84
"EntityNode" ,
85
85
"EntityProperty" ,
86
86
"EntityPropertyType" ,
Original file line number Diff line number Diff line change 7
7
from .apidata_document_collection import ApidataDocumentCollection
8
8
from .apidata_document_search_response import ApidataDocumentSearchResponse
9
9
from .apidata_document_with_score import ApidataDocumentWithScore
10
- from .apidata_entity_edge_source_target import ApidataEntityEdgeSourceTarget
11
10
from .classify_session_request import ClassifySessionRequest
12
11
from .create_document_request import CreateDocumentRequest
13
12
from .edge_type import EdgeType
14
13
from .end_session_response import EndSessionResponse
15
14
from .end_sessions_response import EndSessionsResponse
16
15
from .entity_edge import EntityEdge
16
+ from .entity_edge_source_target import EntityEdgeSourceTarget
17
17
from .entity_node import EntityNode
18
18
from .entity_property import EntityProperty
19
19
from .entity_property_type import EntityPropertyType
66
66
"ApidataDocumentCollection" ,
67
67
"ApidataDocumentSearchResponse" ,
68
68
"ApidataDocumentWithScore" ,
69
- "ApidataEntityEdgeSourceTarget" ,
70
69
"ClassifySessionRequest" ,
71
70
"CreateDocumentRequest" ,
72
71
"EdgeType" ,
73
72
"EndSessionResponse" ,
74
73
"EndSessionsResponse" ,
75
74
"EntityEdge" ,
75
+ "EntityEdgeSourceTarget" ,
76
76
"EntityNode" ,
77
77
"EntityProperty" ,
78
78
"EntityPropertyType" ,
Original file line number Diff line number Diff line change 5
5
6
6
from ..core .datetime_utils import serialize_datetime
7
7
from ..core .pydantic_utilities import deep_union_pydantic_dicts , pydantic_v1
8
- from .apidata_entity_edge_source_target import ApidataEntityEdgeSourceTarget
8
+ from .entity_edge_source_target import EntityEdgeSourceTarget
9
9
from .entity_property import EntityProperty
10
10
11
11
12
12
class EdgeType (pydantic_v1 .BaseModel ):
13
13
description : str
14
14
name : str
15
15
properties : typing .Optional [typing .List [EntityProperty ]] = None
16
- source_targets : typing .Optional [typing .List [ApidataEntityEdgeSourceTarget ]] = None
16
+ source_targets : typing .Optional [typing .List [EntityEdgeSourceTarget ]] = None
17
17
18
18
def json (self , ** kwargs : typing .Any ) -> str :
19
19
kwargs_with_defaults : typing .Any = {"by_alias" : True , "exclude_unset" : True , ** kwargs }
Original file line number Diff line number Diff line change 7
7
from ..core .pydantic_utilities import deep_union_pydantic_dicts , pydantic_v1
8
8
9
9
10
- class ApidataEntityEdgeSourceTarget (pydantic_v1 .BaseModel ):
10
+ class EntityEdgeSourceTarget (pydantic_v1 .BaseModel ):
11
11
source : typing .Optional [str ] = pydantic_v1 .Field (default = None )
12
12
"""
13
13
Source represents the originating node identifier in the edge type relationship. (optional)
You can’t perform that action at this time.
0 commit comments