-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscreenshot_page.py
85 lines (64 loc) · 2.41 KB
/
screenshot_page.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Generated by ariadne-codegen
# Source: ./documents
from typing import Any, List, Optional
from pydantic import Field
from .base_model import BaseModel
from .enums import (
ContentTypes,
EntityState,
FileTypes,
ObservableTypes,
OccurrenceTypes,
)
class ScreenshotPage(BaseModel):
screenshot_page: Optional["ScreenshotPageScreenshotPage"] = Field(
alias="screenshotPage"
)
class ScreenshotPageScreenshotPage(BaseModel):
id: str
name: str
state: EntityState
type: Optional[ContentTypes]
file_type: Optional[FileTypes] = Field(alias="fileType")
mime_type: Optional[str] = Field(alias="mimeType")
uri: Optional[Any]
collections: Optional[List[Optional["ScreenshotPageScreenshotPageCollections"]]]
observations: Optional[List[Optional["ScreenshotPageScreenshotPageObservations"]]]
class ScreenshotPageScreenshotPageCollections(BaseModel):
id: str
name: str
class ScreenshotPageScreenshotPageObservations(BaseModel):
id: str
type: ObservableTypes
observable: "ScreenshotPageScreenshotPageObservationsObservable"
related: Optional["ScreenshotPageScreenshotPageObservationsRelated"]
related_type: Optional[ObservableTypes] = Field(alias="relatedType")
relation: Optional[str]
occurrences: Optional[
List[Optional["ScreenshotPageScreenshotPageObservationsOccurrences"]]
]
state: EntityState
class ScreenshotPageScreenshotPageObservationsObservable(BaseModel):
id: str
name: Optional[str]
class ScreenshotPageScreenshotPageObservationsRelated(BaseModel):
id: str
name: Optional[str]
class ScreenshotPageScreenshotPageObservationsOccurrences(BaseModel):
type: Optional[OccurrenceTypes]
confidence: Optional[float]
start_time: Optional[Any] = Field(alias="startTime")
end_time: Optional[Any] = Field(alias="endTime")
page_index: Optional[int] = Field(alias="pageIndex")
bounding_box: Optional[
"ScreenshotPageScreenshotPageObservationsOccurrencesBoundingBox"
] = Field(alias="boundingBox")
class ScreenshotPageScreenshotPageObservationsOccurrencesBoundingBox(BaseModel):
left: Optional[float]
top: Optional[float]
width: Optional[float]
height: Optional[float]
ScreenshotPage.model_rebuild()
ScreenshotPageScreenshotPage.model_rebuild()
ScreenshotPageScreenshotPageObservations.model_rebuild()
ScreenshotPageScreenshotPageObservationsOccurrences.model_rebuild()