blob: 697381301f47ddf2740b6902a978b194062e050f [file] [log] [blame]
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="datalabeling_v1beta1.html">Data Labeling API</a> . <a href="datalabeling_v1beta1.projects.html">projects</a> . <a href="datalabeling_v1beta1.projects.datasets.html">datasets</a> . <a href="datalabeling_v1beta1.projects.datasets.annotatedDatasets.html">annotatedDatasets</a> . <a href="datalabeling_v1beta1.projects.datasets.annotatedDatasets.examples.html">examples</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81 <code><a href="#get">get(name, filter=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets an example by resource name, including both data and annotation.</p>
83<p class="toc_element">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -080084 <code><a href="#list">list(parent, pageToken=None, filter=None, pageSize=None, x__xgafv=None)</a></code></p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070085<p class="firstline">Lists examples in an annotated dataset. Pagination is supported.</p>
86<p class="toc_element">
87 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
88<p class="firstline">Retrieves the next page of results.</p>
89<h3>Method Details</h3>
90<div class="method">
91 <code class="details" id="close">close()</code>
92 <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
96 <code class="details" id="get">get(name, filter=None, x__xgafv=None)</code>
97 <pre>Gets an example by resource name, including both data and annotation.
98
99Args:
100 name: string, Required. Name of example, format: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}/examples/{example_id} (required)
101 filter: string, Optional. An expression for filtering Examples. Filter by annotation_spec.display_name is supported. Format &quot;annotation_spec.display_name = {display_name}&quot;
102 x__xgafv: string, V1 error format.
103 Allowed values
104 1 - v1 error format
105 2 - v2 error format
106
107Returns:
108 An object of the form:
109
110 { # An Example is a piece of data and its annotation. For example, an image with label &quot;house&quot;.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800111 &quot;name&quot;: &quot;A String&quot;, # Output only. Name of the example, in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}/examples/{example_id}
112 &quot;textPayload&quot;: { # Container of information about a piece of text. # The text payload, a container of the text content.
113 &quot;textContent&quot;: &quot;A String&quot;, # Text content.
114 },
115 &quot;imagePayload&quot;: { # Container of information about an image. # The image payload, a container of the image bytes/uri.
116 &quot;imageThumbnail&quot;: &quot;A String&quot;, # A byte string of a thumbnail image.
117 &quot;mimeType&quot;: &quot;A String&quot;, # Image format.
118 &quot;imageUri&quot;: &quot;A String&quot;, # Image uri from the user bucket.
119 &quot;signedUri&quot;: &quot;A String&quot;, # Signed uri of the image file in the service bucket.
120 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700121 &quot;annotations&quot;: [ # Output only. Annotations for the piece of data in Example. One piece of data can have multiple annotations.
122 { # Annotation for Example. Each example may have one or more annotations. For example in image classification problem, each image might have one or more labels. We call labels binded with this image an Annotation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800123 &quot;annotationMetadata&quot;: { # Additional information associated with the annotation. # Output only. Annotation metadata, including information like votes for labels.
124 &quot;operatorMetadata&quot;: { # General information useful for labels coming from contributors. # Metadata related to human labeling.
125 &quot;comments&quot;: [ # Comments from contributors.
126 &quot;A String&quot;,
127 ],
128 &quot;totalVotes&quot;: 42, # The total number of contributors that answer this question.
129 &quot;score&quot;: 3.14, # Confidence score corresponding to a label. For examle, if 3 contributors have answered the question and 2 of them agree on the final label, the confidence score will be 0.67 (2/3).
130 &quot;labelVotes&quot;: 42, # The total number of contributors that choose this label.
131 },
132 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800133 &quot;name&quot;: &quot;A String&quot;, # Output only. Unique name of this annotation, format is: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset}/examples/{example_id}/annotations/{annotation_id}
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800134 &quot;annotationSource&quot;: &quot;A String&quot;, # Output only. The source of the annotation.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800135 &quot;annotationSentiment&quot;: &quot;A String&quot;, # Output only. Sentiment for this annotation.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700136 &quot;annotationValue&quot;: { # Annotation value for an example. # Output only. This is the actual annotation value, e.g classification, bounding box values are stored here.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800137 &quot;videoEventAnnotation&quot;: { # Video event annotation. # Annotation value for video event case.
138 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the event in this annotation.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800139 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800140 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
141 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800142 },
143 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which the annotation applies.
144 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
145 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
146 },
147 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800148 &quot;imageBoundingPolyAnnotation&quot;: { # Image bounding poly annotation. It represents a polygon including bounding box in the image. # Annotation value for image bounding box, oriented bounding box and polygon cases.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800149 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of object in this bounding polygon.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800150 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800151 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
152 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800153 },
154 &quot;normalizedBoundingPoly&quot;: { # Normalized bounding polygon.
155 &quot;normalizedVertices&quot;: [ # The bounding polygon normalized vertices.
156 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
157 &quot;x&quot;: 3.14, # X coordinate.
158 &quot;y&quot;: 3.14, # Y coordinate.
159 },
160 ],
161 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800162 &quot;boundingPoly&quot;: { # A bounding polygon in the image.
163 &quot;vertices&quot;: [ # The bounding polygon vertices.
164 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
165 &quot;y&quot;: 42, # Y coordinate.
166 &quot;x&quot;: 42, # X coordinate.
167 },
168 ],
169 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800170 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800171 &quot;textClassificationAnnotation&quot;: { # Text classification annotation. # Annotation value for text classification case.
172 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the text.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700173 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800174 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800175 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800176 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800177 },
178 &quot;videoObjectTrackingAnnotation&quot;: { # Video object tracking annotation. # Annotation value for video object detection and tracking case.
179 &quot;objectTrackingFrames&quot;: [ # The list of frames where this object track appears.
180 { # Video frame level annotation for object detection and tracking.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800181 &quot;timeOffset&quot;: &quot;A String&quot;, # The time offset of this frame relative to the beginning of the video.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800182 &quot;normalizedBoundingPoly&quot;: { # Normalized bounding polygon.
183 &quot;normalizedVertices&quot;: [ # The bounding polygon normalized vertices.
184 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
185 &quot;x&quot;: 3.14, # X coordinate.
186 &quot;y&quot;: 3.14, # Y coordinate.
187 },
188 ],
189 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800190 &quot;boundingPoly&quot;: { # A bounding polygon in the image.
191 &quot;vertices&quot;: [ # The bounding polygon vertices.
192 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
193 &quot;y&quot;: 42, # Y coordinate.
194 &quot;x&quot;: 42, # X coordinate.
195 },
196 ],
197 },
198 },
199 ],
200 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which object tracking applies.
201 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
202 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
203 },
204 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the object tracked in this annotation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800205 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800206 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
207 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700208 },
209 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800210 &quot;textEntityExtractionAnnotation&quot;: { # Text entity extraction annotation. # Annotation value for text entity extraction case.
211 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the text entities.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700212 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800213 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
214 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
215 },
216 &quot;sequentialSegment&quot;: { # Start and end position in a sequence (e.g. text segment). # Position of the entity.
217 &quot;start&quot;: 42, # Start position (inclusive).
218 &quot;end&quot;: 42, # End position (exclusive).
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700219 },
220 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800221 &quot;imageSegmentationAnnotation&quot;: { # Image segmentation annotation. # Annotation value for image segmentation.
222 &quot;mimeType&quot;: &quot;A String&quot;, # Image format.
223 &quot;imageBytes&quot;: &quot;A String&quot;, # A byte string of a full image&#x27;s color map.
224 &quot;annotationColors&quot;: { # The mapping between rgb color and annotation spec. The key is the rgb color represented in format of rgb(0, 0, 0). The value is the AnnotationSpec.
225 &quot;a_key&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`.
226 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
227 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
228 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
229 },
230 },
231 },
232 &quot;imagePolylineAnnotation&quot;: { # A polyline for the image annotation. # Annotation value for image polyline cases. Polyline here is different from BoundingPoly. It is formed by line segments connected to each other but not closed form(Bounding Poly). The line segments can cross each other.
233 &quot;polyline&quot;: { # A line with multiple line segments.
234 &quot;vertices&quot;: [ # The polyline vertices.
235 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
236 &quot;y&quot;: 42, # Y coordinate.
237 &quot;x&quot;: 42, # X coordinate.
238 },
239 ],
240 },
241 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of this polyline.
242 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
243 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
244 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
245 },
246 &quot;normalizedPolyline&quot;: { # Normalized polyline.
247 &quot;normalizedVertices&quot;: [ # The normalized polyline vertices.
248 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
249 &quot;x&quot;: 3.14, # X coordinate.
250 &quot;y&quot;: 3.14, # Y coordinate.
251 },
252 ],
253 },
254 },
255 &quot;imageClassificationAnnotation&quot;: { # Image classification annotation definition. # Annotation value for image classification case.
256 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of image.
257 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
258 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
259 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
260 },
261 },
262 &quot;videoClassificationAnnotation&quot;: { # Video classification annotation. # Annotation value for video classification case.
263 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which the annotation applies.
264 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
265 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
266 },
267 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the segment specified by time_segment.
268 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
269 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
270 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
271 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700272 },
273 },
274 },
275 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700276 &quot;videoPayload&quot;: { # Container of information of a video. # The video payload, a container of the video uri.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800277 &quot;mimeType&quot;: &quot;A String&quot;, # Video format.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800278 &quot;signedUri&quot;: &quot;A String&quot;, # Signed uri of the video file in the service bucket.
279 &quot;videoUri&quot;: &quot;A String&quot;, # Video uri from the user bucket.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700280 &quot;videoThumbnails&quot;: [ # The list of video thumbnails.
281 { # Container of information of a video thumbnail.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700282 &quot;thumbnail&quot;: &quot;A String&quot;, # A byte string of the video frame.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800283 &quot;timeOffset&quot;: &quot;A String&quot;, # Time offset relative to the beginning of the video, corresponding to the video frame where the thumbnail has been extracted from.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700284 },
285 ],
286 &quot;frameRate&quot;: 3.14, # FPS of the video.
287 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700288 }</pre>
289</div>
290
291<div class="method">
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800292 <code class="details" id="list">list(parent, pageToken=None, filter=None, pageSize=None, x__xgafv=None)</code>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700293 <pre>Lists examples in an annotated dataset. Pagination is supported.
294
295Args:
296 parent: string, Required. Example resource parent. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700297 pageToken: string, Optional. A token identifying a page of results for the server to return. Typically obtained by ListExamplesResponse.next_page_token of the previous [DataLabelingService.ListExamples] call. Return first page if empty.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800298 filter: string, Optional. An expression for filtering Examples. For annotated datasets that have annotation spec set, filter by annotation_spec.display_name is supported. Format &quot;annotation_spec.display_name = {display_name}&quot;
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800299 pageSize: integer, Optional. Requested page size. Server may return fewer results than requested. Default value is 100.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700300 x__xgafv: string, V1 error format.
301 Allowed values
302 1 - v1 error format
303 2 - v2 error format
304
305Returns:
306 An object of the form:
307
308 { # Results of listing Examples in and annotated dataset.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700309 &quot;examples&quot;: [ # The list of examples to return.
310 { # An Example is a piece of data and its annotation. For example, an image with label &quot;house&quot;.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800311 &quot;name&quot;: &quot;A String&quot;, # Output only. Name of the example, in format of: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}/examples/{example_id}
312 &quot;textPayload&quot;: { # Container of information about a piece of text. # The text payload, a container of the text content.
313 &quot;textContent&quot;: &quot;A String&quot;, # Text content.
314 },
315 &quot;imagePayload&quot;: { # Container of information about an image. # The image payload, a container of the image bytes/uri.
316 &quot;imageThumbnail&quot;: &quot;A String&quot;, # A byte string of a thumbnail image.
317 &quot;mimeType&quot;: &quot;A String&quot;, # Image format.
318 &quot;imageUri&quot;: &quot;A String&quot;, # Image uri from the user bucket.
319 &quot;signedUri&quot;: &quot;A String&quot;, # Signed uri of the image file in the service bucket.
320 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700321 &quot;annotations&quot;: [ # Output only. Annotations for the piece of data in Example. One piece of data can have multiple annotations.
322 { # Annotation for Example. Each example may have one or more annotations. For example in image classification problem, each image might have one or more labels. We call labels binded with this image an Annotation.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800323 &quot;annotationMetadata&quot;: { # Additional information associated with the annotation. # Output only. Annotation metadata, including information like votes for labels.
324 &quot;operatorMetadata&quot;: { # General information useful for labels coming from contributors. # Metadata related to human labeling.
325 &quot;comments&quot;: [ # Comments from contributors.
326 &quot;A String&quot;,
327 ],
328 &quot;totalVotes&quot;: 42, # The total number of contributors that answer this question.
329 &quot;score&quot;: 3.14, # Confidence score corresponding to a label. For examle, if 3 contributors have answered the question and 2 of them agree on the final label, the confidence score will be 0.67 (2/3).
330 &quot;labelVotes&quot;: 42, # The total number of contributors that choose this label.
331 },
332 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800333 &quot;name&quot;: &quot;A String&quot;, # Output only. Unique name of this annotation, format is: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset}/examples/{example_id}/annotations/{annotation_id}
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800334 &quot;annotationSource&quot;: &quot;A String&quot;, # Output only. The source of the annotation.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800335 &quot;annotationSentiment&quot;: &quot;A String&quot;, # Output only. Sentiment for this annotation.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700336 &quot;annotationValue&quot;: { # Annotation value for an example. # Output only. This is the actual annotation value, e.g classification, bounding box values are stored here.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800337 &quot;videoEventAnnotation&quot;: { # Video event annotation. # Annotation value for video event case.
338 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the event in this annotation.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800339 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800340 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
341 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800342 },
343 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which the annotation applies.
344 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
345 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
346 },
347 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800348 &quot;imageBoundingPolyAnnotation&quot;: { # Image bounding poly annotation. It represents a polygon including bounding box in the image. # Annotation value for image bounding box, oriented bounding box and polygon cases.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800349 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of object in this bounding polygon.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800350 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800351 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
352 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800353 },
354 &quot;normalizedBoundingPoly&quot;: { # Normalized bounding polygon.
355 &quot;normalizedVertices&quot;: [ # The bounding polygon normalized vertices.
356 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
357 &quot;x&quot;: 3.14, # X coordinate.
358 &quot;y&quot;: 3.14, # Y coordinate.
359 },
360 ],
361 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800362 &quot;boundingPoly&quot;: { # A bounding polygon in the image.
363 &quot;vertices&quot;: [ # The bounding polygon vertices.
364 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
365 &quot;y&quot;: 42, # Y coordinate.
366 &quot;x&quot;: 42, # X coordinate.
367 },
368 ],
369 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800370 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800371 &quot;textClassificationAnnotation&quot;: { # Text classification annotation. # Annotation value for text classification case.
372 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the text.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700373 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800374 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800375 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800376 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800377 },
378 &quot;videoObjectTrackingAnnotation&quot;: { # Video object tracking annotation. # Annotation value for video object detection and tracking case.
379 &quot;objectTrackingFrames&quot;: [ # The list of frames where this object track appears.
380 { # Video frame level annotation for object detection and tracking.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800381 &quot;timeOffset&quot;: &quot;A String&quot;, # The time offset of this frame relative to the beginning of the video.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800382 &quot;normalizedBoundingPoly&quot;: { # Normalized bounding polygon.
383 &quot;normalizedVertices&quot;: [ # The bounding polygon normalized vertices.
384 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
385 &quot;x&quot;: 3.14, # X coordinate.
386 &quot;y&quot;: 3.14, # Y coordinate.
387 },
388 ],
389 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800390 &quot;boundingPoly&quot;: { # A bounding polygon in the image.
391 &quot;vertices&quot;: [ # The bounding polygon vertices.
392 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
393 &quot;y&quot;: 42, # Y coordinate.
394 &quot;x&quot;: 42, # X coordinate.
395 },
396 ],
397 },
398 },
399 ],
400 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which object tracking applies.
401 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
402 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
403 },
404 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the object tracked in this annotation.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800405 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800406 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
407 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700408 },
409 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800410 &quot;textEntityExtractionAnnotation&quot;: { # Text entity extraction annotation. # Annotation value for text entity extraction case.
411 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the text entities.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700412 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800413 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
414 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
415 },
416 &quot;sequentialSegment&quot;: { # Start and end position in a sequence (e.g. text segment). # Position of the entity.
417 &quot;start&quot;: 42, # Start position (inclusive).
418 &quot;end&quot;: 42, # End position (exclusive).
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700419 },
420 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800421 &quot;imageSegmentationAnnotation&quot;: { # Image segmentation annotation. # Annotation value for image segmentation.
422 &quot;mimeType&quot;: &quot;A String&quot;, # Image format.
423 &quot;imageBytes&quot;: &quot;A String&quot;, # A byte string of a full image&#x27;s color map.
424 &quot;annotationColors&quot;: { # The mapping between rgb color and annotation spec. The key is the rgb color represented in format of rgb(0, 0, 0). The value is the AnnotationSpec.
425 &quot;a_key&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`.
426 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
427 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
428 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
429 },
430 },
431 },
432 &quot;imagePolylineAnnotation&quot;: { # A polyline for the image annotation. # Annotation value for image polyline cases. Polyline here is different from BoundingPoly. It is formed by line segments connected to each other but not closed form(Bounding Poly). The line segments can cross each other.
433 &quot;polyline&quot;: { # A line with multiple line segments.
434 &quot;vertices&quot;: [ # The polyline vertices.
435 { # A vertex represents a 2D point in the image. NOTE: the vertex coordinates are in the same scale as the original image.
436 &quot;y&quot;: 42, # Y coordinate.
437 &quot;x&quot;: 42, # X coordinate.
438 },
439 ],
440 },
441 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of this polyline.
442 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
443 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
444 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
445 },
446 &quot;normalizedPolyline&quot;: { # Normalized polyline.
447 &quot;normalizedVertices&quot;: [ # The normalized polyline vertices.
448 { # A vertex represents a 2D point in the image. NOTE: the normalized vertex coordinates are relative to the original image and range from 0 to 1.
449 &quot;x&quot;: 3.14, # X coordinate.
450 &quot;y&quot;: 3.14, # Y coordinate.
451 },
452 ],
453 },
454 },
455 &quot;imageClassificationAnnotation&quot;: { # Image classification annotation definition. # Annotation value for image classification case.
456 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of image.
457 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
458 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
459 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
460 },
461 },
462 &quot;videoClassificationAnnotation&quot;: { # Video classification annotation. # Annotation value for video classification case.
463 &quot;timeSegment&quot;: { # A time period inside of an example that has a time dimension (e.g. video). # The time segment of the video to which the annotation applies.
464 &quot;endTimeOffset&quot;: &quot;A String&quot;, # End of the time segment (exclusive), represented as the duration since the example start.
465 &quot;startTimeOffset&quot;: &quot;A String&quot;, # Start of the time segment (inclusive), represented as the duration since the example start.
466 },
467 &quot;annotationSpec&quot;: { # Container of information related to one possible annotation that can be used in a labeling task. For example, an image classification task where images are labeled as `dog` or `cat` must reference an AnnotationSpec for `dog` and an AnnotationSpec for `cat`. # Label of the segment specified by time_segment.
468 &quot;index&quot;: 42, # Output only. This is the integer index of the AnnotationSpec. The index for the whole AnnotationSpecSet is sequential starting from 0. For example, an AnnotationSpecSet with classes `dog` and `cat`, might contain one AnnotationSpec with `{ display_name: &quot;dog&quot;, index: 0 }` and one AnnotationSpec with `{ display_name: &quot;cat&quot;, index: 1 }`. This is especially useful for model training as it encodes the string labels into numeric values.
469 &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the AnnotationSpec. Maximum of 64 characters.
470 &quot;description&quot;: &quot;A String&quot;, # Optional. User-provided description of the annotation specification. The description can be up to 10,000 characters long.
471 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700472 },
473 },
474 },
475 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700476 &quot;videoPayload&quot;: { # Container of information of a video. # The video payload, a container of the video uri.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800477 &quot;mimeType&quot;: &quot;A String&quot;, # Video format.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800478 &quot;signedUri&quot;: &quot;A String&quot;, # Signed uri of the video file in the service bucket.
479 &quot;videoUri&quot;: &quot;A String&quot;, # Video uri from the user bucket.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700480 &quot;videoThumbnails&quot;: [ # The list of video thumbnails.
481 { # Container of information of a video thumbnail.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700482 &quot;thumbnail&quot;: &quot;A String&quot;, # A byte string of the video frame.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800483 &quot;timeOffset&quot;: &quot;A String&quot;, # Time offset relative to the beginning of the video, corresponding to the video frame where the thumbnail has been extracted from.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700484 },
485 ],
486 &quot;frameRate&quot;: 3.14, # FPS of the video.
487 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700488 },
489 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800490 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve next page of results.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700491 }</pre>
492</div>
493
494<div class="method">
495 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
496 <pre>Retrieves the next page of results.
497
498Args:
499 previous_request: The request for the previous page. (required)
500 previous_response: The response from the request for the previous page. (required)
501
502Returns:
503 A request object that you can call &#x27;execute()&#x27; on to request the next
504 page. Returns None if there are no more items in the collection.
505 </pre>
506</div>
507
508</body></html>