blob: 33a26d420d129b24e822d3f06280fd7cd86db117 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -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="poly_v1.html">Poly API</a> . <a href="poly_v1.assets.html">assets</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
79<p class="firstline">Returns detailed information about an asset given its name.</p>
80<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070081 <code><a href="#list">list(maxComplexity=None, orderBy=None, curated=None, format=None, pageToken=None, category=None, pageSize=None, keywords=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">Lists all public, remixable assets. These are assets with an access level</p>
83<p class="toc_element">
84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<h3>Method Details</h3>
87<div class="method">
88 <code class="details" id="get">get(name, x__xgafv=None)</code>
89 <pre>Returns detailed information about an asset given its name.
90PRIVATE assets are returned only if
91 the currently authenticated user (via OAuth token) is the author of the
92 asset.
93
94Args:
Bu Sun Kim65020912020-05-20 12:08:20 -070095 name: string, Required. An asset&#x27;s name in the form `assets/{ASSET_ID}`. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070096 x__xgafv: string, V1 error format.
97 Allowed values
98 1 - v1 error format
99 2 - v2 error format
100
101Returns:
102 An object of the form:
103
104 { # Represents and describes an asset in the Poly library. An asset is a 3D model
105 # or scene created using [Tilt Brush](//www.tiltbrush.com),
106 # [Blocks](//vr.google.com/blocks/), or any 3D program that produces a file
107 # that can be upload to Poly.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700108 &quot;remixInfo&quot;: { # Info about the sources of this asset (i.e. assets that were remixed to # The remix info for the asset.
109 # create this asset).
110 &quot;sourceAsset&quot;: [ # Resource ids for the sources of this remix, of the form:
111 # `assets/{ASSET_ID}`
112 &quot;A String&quot;,
113 ],
114 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700115 &quot;thumbnail&quot;: { # Represents a file in Poly, which can be a root, # The thumbnail image for the asset.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700116 # resource, or thumbnail file.
Bu Sun Kim65020912020-05-20 12:08:20 -0700117 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700118 # root file. For root or thumbnail files,
119 # this is just the filename.
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700121 # For more information, see
122 # [MIME
123 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700125 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;visibility&quot;: &quot;A String&quot;, # The visibility of the asset and who can access it.
127 &quot;name&quot;: &quot;A String&quot;, # The unique identifier for the asset in the form:
128 # `assets/{ASSET_ID}`.
129 &quot;isCurated&quot;: True or False, # Whether this asset has been curated by the Poly team.
130 &quot;description&quot;: &quot;A String&quot;, # The human-readable description, set by the asset&#x27;s author.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700131 &quot;createTime&quot;: &quot;A String&quot;, # For published assets, the time when the asset was published.
132 # For unpublished assets, the time when the asset was created.
Bu Sun Kim65020912020-05-20 12:08:20 -0700133 &quot;metadata&quot;: &quot;A String&quot;, # Application-defined opaque metadata for this asset. This field is only
134 # returned when querying for the signed-in user&#x27;s own assets, not for public
135 # assets. This string is limited to 1K chars. It is up to the creator of
136 # the asset to define the format for this string (for example, JSON).
Bu Sun Kim65020912020-05-20 12:08:20 -0700137 &quot;formats&quot;: [ # A list of Formats where each
138 # format describes one representation of the asset.
139 { # The same asset can be represented in different formats, for example,
140 # a [WaveFront .obj](//en.wikipedia.org/wiki/Wavefront_.obj_file) file with its
141 # corresponding .mtl file or a [Khronos glTF](//www.khronos.org/gltf) file
142 # with its corresponding .glb binary data. A format refers to a specific
143 # representation of an asset and contains all information needed to
144 # retrieve and describe this representation.
Bu Sun Kim65020912020-05-20 12:08:20 -0700145 &quot;root&quot;: { # Represents a file in Poly, which can be a root, # The root of the file hierarchy. This will always be populated.
146 # For some format_types - such as `TILT`, which are
147 # self-contained - this is all of the data.
148 #
149 # Other types - such as `OBJ` - often reference other data elements.
150 # These are contained in the resources field.
151 # resource, or thumbnail file.
152 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
153 # root file. For root or thumbnail files,
154 # this is just the filename.
155 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
156 # For more information, see
157 # [MIME
158 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
159 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
160 },
161 &quot;formatComplexity&quot;: { # Information on the complexity of this Format. # Complexity stats about this representation of the asset.
162 &quot;triangleCount&quot;: &quot;A String&quot;, # The estimated number of triangles.
163 &quot;lodHint&quot;: 42, # A non-negative integer that represents the level of detail (LOD) of this
164 # format relative to other formats of the same asset with the same
165 # format_type.
166 # This hint allows you to sort formats from the most-detailed (0) to
167 # least-detailed (integers greater than 0).
168 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700169 &quot;resources&quot;: [ # A list of dependencies of the root element. May include, but is not
170 # limited to, materials, textures, and shader programs.
171 { # Represents a file in Poly, which can be a root,
172 # resource, or thumbnail file.
173 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
174 # root file. For root or thumbnail files,
175 # this is just the filename.
176 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
177 # For more information, see
178 # [MIME
179 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
180 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
181 },
182 ],
183 &quot;formatType&quot;: &quot;A String&quot;, # A short string that identifies the format type of this representation.
184 # Possible values are: `FBX`, `GLTF`, `GLTF2`, `OBJ`, and `TILT`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700185 },
186 ],
187 &quot;presentationParams&quot;: { # Hints for displaying the asset, based on information available when the asset # Hints for displaying the asset. Note that these parameters are not
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700188 # immutable; the author of an asset may change them post-publication.
189 # was uploaded.
Bu Sun Kim65020912020-05-20 12:08:20 -0700190 &quot;colorSpace&quot;: &quot;A String&quot;, # The materials&#x27; diffuse/albedo color. This does not apply to vertex colors
191 # or texture maps.
192 &quot;orientingRotation&quot;: { # A [Quaternion](//en.wikipedia.org/wiki/Quaternion). Please note: if in the # A rotation that should be applied to the object root to make it upright.
193 # More precisely, this quaternion transforms from &quot;object space&quot; (the space
194 # in which the object is defined) to &quot;presentation space&quot;, a coordinate
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700195 # system where +Y is up, +X is right, -Z is forward. For example, if
196 # the object is the Eiffel Tower, in its local coordinate system the
197 # object might be laid out such that the base of the tower is on the
198 # YZ plane and the tip of the tower is towards positive X. In this case
199 # this quaternion would specify a rotation (of 90 degrees about the Z
200 # axis) such that in the presentation space the base of the tower is
201 # aligned with the XZ plane, and the tip of the tower lies towards +Y.
202 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700203 # This rotation is unrelated to the object&#x27;s pose in the web preview,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700204 # which is just a camera position setting and is *not* reflected in this
205 # rotation.
206 #
207 # Please note: this is applicable only to the gLTF.
Bu Sun Kim65020912020-05-20 12:08:20 -0700208 # response you see &quot;w: 1&quot; and nothing else this is the default value of
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700209 # [0, 0, 0, 1] where x,y, and z are 0.
Bu Sun Kim65020912020-05-20 12:08:20 -0700210 &quot;x&quot;: 3.14, # The x component.
211 &quot;w&quot;: 3.14, # The scalar component.
212 &quot;y&quot;: 3.14, # The y component.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700213 &quot;z&quot;: 3.14, # The z component.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700214 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700215 &quot;backgroundColor&quot;: &quot;A String&quot;, # A background color which could be used for displaying the 3D asset in a
216 # &#x27;thumbnail&#x27; or &#x27;palette&#x27; style view. Authors have the option to set this
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700217 # background color when publishing or editing their asset.
218 #
219 # This is represented as a six-digit hexademical triplet specifying the
220 # RGB components of the background color, e.g. #FF0000 for Red.
221 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700222 &quot;license&quot;: &quot;A String&quot;, # The license under which the author has made the asset available
223 # for use, if any.
224 &quot;authorName&quot;: &quot;A String&quot;, # The author&#x27;s publicly visible name. Use this name when giving credit to the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700225 # author. For more information, see [Licensing](/poly/discover/licensing).
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700226 &quot;displayName&quot;: &quot;A String&quot;, # The human-readable name, set by the asset&#x27;s author.
227 &quot;updateTime&quot;: &quot;A String&quot;, # The time when the asset was last modified. For published assets, whose
228 # contents are immutable, the update time changes only when metadata
229 # properties, such as visibility, are updated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700230 }</pre>
231</div>
232
233<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700234 <code class="details" id="list">list(maxComplexity=None, orderBy=None, curated=None, format=None, pageToken=None, category=None, pageSize=None, keywords=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700235 <pre>Lists all public, remixable assets. These are assets with an access level
236of PUBLIC and published under the
237CC-By license.
238
239Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700240 maxComplexity: string, Returns assets that are of the specified complexity or less. Defaults to
241COMPLEX. For example, a request for
242MEDIUM assets also includes
243SIMPLE assets.
Bu Sun Kim65020912020-05-20 12:08:20 -0700244 orderBy: string, Specifies an ordering for assets. Acceptable values are:
245`BEST`, `NEWEST`, `OLDEST`. Defaults to `BEST`, which ranks assets
246based on a combination of popularity and other features.
247 curated: boolean, Return only assets that have been curated by the Poly team.
248 format: string, Return only assets with the matching format. Acceptable values are:
249`BLOCKS`, `FBX`, `GLTF`, `GLTF2`, `OBJ`, `TILT`.
250 pageToken: string, Specifies a continuation token from a previous search whose results were
251split into multiple pages. To get the next page, submit the same request
252specifying the value from
253next_page_token.
254 category: string, Filter assets based on the specified category. Supported values are:
255`animals`, `architecture`, `art`, `food`, `nature`, `objects`, `people`,
256`scenes`, `technology`, and `transport`.
257 pageSize: integer, The maximum number of assets to be returned. This value must be between `1`
258and `100`. Defaults to `20`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700259 keywords: string, One or more search terms to be matched against all text that Poly has
260indexed for assets, which includes display_name,
261description, and tags. Multiple keywords should be
262separated by spaces.
263 x__xgafv: string, V1 error format.
264 Allowed values
265 1 - v1 error format
266 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700267
268Returns:
269 An object of the form:
270
271 { # A response message from a request to list.
Bu Sun Kim65020912020-05-20 12:08:20 -0700272 &quot;nextPageToken&quot;: &quot;A String&quot;, # The continuation token for retrieving the next page. If empty,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700273 # indicates that there are no more pages. To get the next page, submit the
274 # same request specifying this value as the
275 # page_token.
Bu Sun Kim65020912020-05-20 12:08:20 -0700276 &quot;assets&quot;: [ # A list of assets that match the criteria specified in the request.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700277 { # Represents and describes an asset in the Poly library. An asset is a 3D model
278 # or scene created using [Tilt Brush](//www.tiltbrush.com),
279 # [Blocks](//vr.google.com/blocks/), or any 3D program that produces a file
280 # that can be upload to Poly.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700281 &quot;remixInfo&quot;: { # Info about the sources of this asset (i.e. assets that were remixed to # The remix info for the asset.
282 # create this asset).
283 &quot;sourceAsset&quot;: [ # Resource ids for the sources of this remix, of the form:
284 # `assets/{ASSET_ID}`
285 &quot;A String&quot;,
286 ],
287 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700288 &quot;thumbnail&quot;: { # Represents a file in Poly, which can be a root, # The thumbnail image for the asset.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700289 # resource, or thumbnail file.
Bu Sun Kim65020912020-05-20 12:08:20 -0700290 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700291 # root file. For root or thumbnail files,
292 # this is just the filename.
Bu Sun Kim65020912020-05-20 12:08:20 -0700293 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700294 # For more information, see
295 # [MIME
296 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
Bu Sun Kim65020912020-05-20 12:08:20 -0700297 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700298 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 &quot;visibility&quot;: &quot;A String&quot;, # The visibility of the asset and who can access it.
300 &quot;name&quot;: &quot;A String&quot;, # The unique identifier for the asset in the form:
301 # `assets/{ASSET_ID}`.
302 &quot;isCurated&quot;: True or False, # Whether this asset has been curated by the Poly team.
303 &quot;description&quot;: &quot;A String&quot;, # The human-readable description, set by the asset&#x27;s author.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700304 &quot;createTime&quot;: &quot;A String&quot;, # For published assets, the time when the asset was published.
305 # For unpublished assets, the time when the asset was created.
Bu Sun Kim65020912020-05-20 12:08:20 -0700306 &quot;metadata&quot;: &quot;A String&quot;, # Application-defined opaque metadata for this asset. This field is only
307 # returned when querying for the signed-in user&#x27;s own assets, not for public
308 # assets. This string is limited to 1K chars. It is up to the creator of
309 # the asset to define the format for this string (for example, JSON).
Bu Sun Kim65020912020-05-20 12:08:20 -0700310 &quot;formats&quot;: [ # A list of Formats where each
311 # format describes one representation of the asset.
312 { # The same asset can be represented in different formats, for example,
313 # a [WaveFront .obj](//en.wikipedia.org/wiki/Wavefront_.obj_file) file with its
314 # corresponding .mtl file or a [Khronos glTF](//www.khronos.org/gltf) file
315 # with its corresponding .glb binary data. A format refers to a specific
316 # representation of an asset and contains all information needed to
317 # retrieve and describe this representation.
Bu Sun Kim65020912020-05-20 12:08:20 -0700318 &quot;root&quot;: { # Represents a file in Poly, which can be a root, # The root of the file hierarchy. This will always be populated.
319 # For some format_types - such as `TILT`, which are
320 # self-contained - this is all of the data.
321 #
322 # Other types - such as `OBJ` - often reference other data elements.
323 # These are contained in the resources field.
324 # resource, or thumbnail file.
325 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
326 # root file. For root or thumbnail files,
327 # this is just the filename.
328 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
329 # For more information, see
330 # [MIME
331 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
332 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
333 },
334 &quot;formatComplexity&quot;: { # Information on the complexity of this Format. # Complexity stats about this representation of the asset.
335 &quot;triangleCount&quot;: &quot;A String&quot;, # The estimated number of triangles.
336 &quot;lodHint&quot;: 42, # A non-negative integer that represents the level of detail (LOD) of this
337 # format relative to other formats of the same asset with the same
338 # format_type.
339 # This hint allows you to sort formats from the most-detailed (0) to
340 # least-detailed (integers greater than 0).
341 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700342 &quot;resources&quot;: [ # A list of dependencies of the root element. May include, but is not
343 # limited to, materials, textures, and shader programs.
344 { # Represents a file in Poly, which can be a root,
345 # resource, or thumbnail file.
346 &quot;relativePath&quot;: &quot;A String&quot;, # The path of the resource file relative to the
347 # root file. For root or thumbnail files,
348 # this is just the filename.
349 &quot;contentType&quot;: &quot;A String&quot;, # The MIME content-type, such as `image/png`.
350 # For more information, see
351 # [MIME
352 # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types).
353 &quot;url&quot;: &quot;A String&quot;, # The URL where the file data can be retrieved.
354 },
355 ],
356 &quot;formatType&quot;: &quot;A String&quot;, # A short string that identifies the format type of this representation.
357 # Possible values are: `FBX`, `GLTF`, `GLTF2`, `OBJ`, and `TILT`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700358 },
359 ],
360 &quot;presentationParams&quot;: { # Hints for displaying the asset, based on information available when the asset # Hints for displaying the asset. Note that these parameters are not
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700361 # immutable; the author of an asset may change them post-publication.
362 # was uploaded.
Bu Sun Kim65020912020-05-20 12:08:20 -0700363 &quot;colorSpace&quot;: &quot;A String&quot;, # The materials&#x27; diffuse/albedo color. This does not apply to vertex colors
364 # or texture maps.
365 &quot;orientingRotation&quot;: { # A [Quaternion](//en.wikipedia.org/wiki/Quaternion). Please note: if in the # A rotation that should be applied to the object root to make it upright.
366 # More precisely, this quaternion transforms from &quot;object space&quot; (the space
367 # in which the object is defined) to &quot;presentation space&quot;, a coordinate
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700368 # system where +Y is up, +X is right, -Z is forward. For example, if
369 # the object is the Eiffel Tower, in its local coordinate system the
370 # object might be laid out such that the base of the tower is on the
371 # YZ plane and the tip of the tower is towards positive X. In this case
372 # this quaternion would specify a rotation (of 90 degrees about the Z
373 # axis) such that in the presentation space the base of the tower is
374 # aligned with the XZ plane, and the tip of the tower lies towards +Y.
375 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700376 # This rotation is unrelated to the object&#x27;s pose in the web preview,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700377 # which is just a camera position setting and is *not* reflected in this
378 # rotation.
379 #
380 # Please note: this is applicable only to the gLTF.
Bu Sun Kim65020912020-05-20 12:08:20 -0700381 # response you see &quot;w: 1&quot; and nothing else this is the default value of
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700382 # [0, 0, 0, 1] where x,y, and z are 0.
Bu Sun Kim65020912020-05-20 12:08:20 -0700383 &quot;x&quot;: 3.14, # The x component.
384 &quot;w&quot;: 3.14, # The scalar component.
385 &quot;y&quot;: 3.14, # The y component.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700386 &quot;z&quot;: 3.14, # The z component.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700387 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700388 &quot;backgroundColor&quot;: &quot;A String&quot;, # A background color which could be used for displaying the 3D asset in a
389 # &#x27;thumbnail&#x27; or &#x27;palette&#x27; style view. Authors have the option to set this
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700390 # background color when publishing or editing their asset.
391 #
392 # This is represented as a six-digit hexademical triplet specifying the
393 # RGB components of the background color, e.g. #FF0000 for Red.
394 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700395 &quot;license&quot;: &quot;A String&quot;, # The license under which the author has made the asset available
396 # for use, if any.
397 &quot;authorName&quot;: &quot;A String&quot;, # The author&#x27;s publicly visible name. Use this name when giving credit to the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700398 # author. For more information, see [Licensing](/poly/discover/licensing).
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700399 &quot;displayName&quot;: &quot;A String&quot;, # The human-readable name, set by the asset&#x27;s author.
400 &quot;updateTime&quot;: &quot;A String&quot;, # The time when the asset was last modified. For published assets, whose
401 # contents are immutable, the update time changes only when metadata
402 # properties, such as visibility, are updated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700403 },
404 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700405 &quot;totalSize&quot;: 42, # The total number of assets in the list, without pagination.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700406 }</pre>
407</div>
408
409<div class="method">
410 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
411 <pre>Retrieves the next page of results.
412
413Args:
414 previous_request: The request for the previous page. (required)
415 previous_response: The response from the request for the previous page. (required)
416
417Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700418 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700419 page. Returns None if there are no more items in the collection.
420 </pre>
421</div>
422
423</body></html>