Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 1 | <html><body> |
| 2 | <style> |
| 3 | |
| 4 | body, 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 | |
| 15 | body { |
| 16 | font-size: 13px; |
| 17 | padding: 1em; |
| 18 | } |
| 19 | |
| 20 | h1 { |
| 21 | font-size: 26px; |
| 22 | margin-bottom: 1em; |
| 23 | } |
| 24 | |
| 25 | h2 { |
| 26 | font-size: 24px; |
| 27 | margin-bottom: 1em; |
| 28 | } |
| 29 | |
| 30 | h3 { |
| 31 | font-size: 20px; |
| 32 | margin-bottom: 1em; |
| 33 | margin-top: 1em; |
| 34 | } |
| 35 | |
| 36 | pre, code { |
| 37 | line-height: 1.5; |
| 38 | font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| 39 | } |
| 40 | |
| 41 | pre { |
| 42 | margin-top: 0.5em; |
| 43 | } |
| 44 | |
| 45 | h1, h2, h3, p { |
| 46 | font-family: Arial, sans serif; |
| 47 | } |
| 48 | |
| 49 | h1, 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.users.html">users</a> . <a href="poly_v1.users.assets.html">assets</a></h1> |
| 76 | <h2>Instance Methods</h2> |
| 77 | <p class="toc_element"> |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 78 | <code><a href="#list">list(name, pageSize=None, visibility=None, orderBy=None, format=None, pageToken=None, x__xgafv=None)</a></code></p> |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 79 | <p class="firstline">Lists assets authored by the given user. Only the value 'me', representing</p> |
| 80 | <p class="toc_element"> |
| 81 | <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> |
| 82 | <p class="firstline">Retrieves the next page of results.</p> |
| 83 | <h3>Method Details</h3> |
| 84 | <div class="method"> |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 85 | <code class="details" id="list">list(name, pageSize=None, visibility=None, orderBy=None, format=None, pageToken=None, x__xgafv=None)</code> |
| 86 | <pre>Lists assets authored by the given user. Only the value 'me', representing |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 87 | the currently-authenticated user, is supported. May include assets with an |
| 88 | access level of PRIVATE or |
| 89 | UNLISTED and assets which are |
| 90 | All Rights Reserved for the |
| 91 | currently-authenticated user. |
| 92 | |
| 93 | Args: |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 94 | name: string, A valid user id. Currently, only the special value 'me', representing the |
| 95 | currently-authenticated user is supported. To use 'me', you must pass |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 96 | an OAuth token with the request. (required) |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 97 | pageSize: integer, The maximum number of assets to be returned. This value must be between `1` |
| 98 | and `100`. Defaults to `20`. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 99 | visibility: string, The visibility of the assets to be returned. |
| 100 | Defaults to |
| 101 | VISIBILITY_UNSPECIFIED |
| 102 | which returns all assets. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 103 | orderBy: string, Specifies an ordering for assets. Acceptable values are: |
| 104 | `BEST`, `NEWEST`, `OLDEST`. Defaults to `BEST`, which ranks assets |
| 105 | based on a combination of popularity and other features. |
| 106 | format: string, Return only assets with the matching format. Acceptable values are: |
| 107 | `BLOCKS`, `FBX`, `GLTF`, `GLTF2`, `OBJ`, and `TILT`. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 108 | pageToken: string, Specifies a continuation token from a previous search whose results were |
| 109 | split into multiple pages. To get the next page, submit the same request |
| 110 | specifying the value from |
| 111 | next_page_token. |
| 112 | x__xgafv: string, V1 error format. |
| 113 | Allowed values |
| 114 | 1 - v1 error format |
| 115 | 2 - v2 error format |
| 116 | |
| 117 | Returns: |
| 118 | An object of the form: |
| 119 | |
| 120 | { # A response message from a request to list. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 121 | "totalSize": 42, # The total number of assets in the list, without pagination. |
| 122 | "userAssets": [ # A list of UserAssets matching the request. |
| 123 | { # Data about the user's asset. |
| 124 | "asset": { # Represents and describes an asset in the Poly library. An asset is a 3D model # An Asset. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 125 | # or scene created using [Tilt Brush](//www.tiltbrush.com), |
| 126 | # [Blocks](//vr.google.com/blocks/), or any 3D program that produces a file |
| 127 | # that can be upload to Poly. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 128 | "displayName": "A String", # The human-readable name, set by the asset's author. |
| 129 | "updateTime": "A String", # The time when the asset was last modified. For published assets, whose |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 130 | # contents are immutable, the update time changes only when metadata |
| 131 | # properties, such as visibility, are updated. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 132 | "thumbnail": { # Represents a file in Poly, which can be a root, # The thumbnail image for the asset. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 133 | # resource, or thumbnail file. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 134 | "relativePath": "A String", # The path of the resource file relative to the |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 135 | # root file. For root or thumbnail files, |
| 136 | # this is just the filename. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 137 | "contentType": "A String", # The MIME content-type, such as `image/png`. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 138 | # For more information, see |
| 139 | # [MIME |
| 140 | # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types). |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 141 | "url": "A String", # The URL where the file data can be retrieved. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 142 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 143 | "remixInfo": { # Info about the sources of this asset (i.e. assets that were remixed to # The remix info for the asset. |
| 144 | # create this asset). |
| 145 | "sourceAsset": [ # Resource ids for the sources of this remix, of the form: |
| 146 | # `assets/{ASSET_ID}` |
| 147 | "A String", |
| 148 | ], |
| 149 | }, |
| 150 | "visibility": "A String", # The visibility of the asset and who can access it. |
| 151 | "name": "A String", # The unique identifier for the asset in the form: |
| 152 | # `assets/{ASSET_ID}`. |
| 153 | "isCurated": True or False, # Whether this asset has been curated by the Poly team. |
| 154 | "description": "A String", # The human-readable description, set by the asset's author. |
| 155 | "metadata": "A String", # Application-defined opaque metadata for this asset. This field is only |
| 156 | # returned when querying for the signed-in user's own assets, not for public |
| 157 | # assets. This string is limited to 1K chars. It is up to the creator of |
| 158 | # the asset to define the format for this string (for example, JSON). |
| 159 | "createTime": "A String", # For published assets, the time when the asset was published. |
| 160 | # For unpublished assets, the time when the asset was created. |
| 161 | "formats": [ # A list of Formats where each |
| 162 | # format describes one representation of the asset. |
| 163 | { # The same asset can be represented in different formats, for example, |
| 164 | # a [WaveFront .obj](//en.wikipedia.org/wiki/Wavefront_.obj_file) file with its |
| 165 | # corresponding .mtl file or a [Khronos glTF](//www.khronos.org/gltf) file |
| 166 | # with its corresponding .glb binary data. A format refers to a specific |
| 167 | # representation of an asset and contains all information needed to |
| 168 | # retrieve and describe this representation. |
| 169 | "resources": [ # 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 | "relativePath": "A String", # The path of the resource file relative to the |
| 174 | # root file. For root or thumbnail files, |
| 175 | # this is just the filename. |
| 176 | "contentType": "A String", # 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 | "url": "A String", # The URL where the file data can be retrieved. |
| 181 | }, |
| 182 | ], |
| 183 | "formatType": "A String", # A short string that identifies the format type of this representation. |
| 184 | # Possible values are: `FBX`, `GLTF`, `GLTF2`, `OBJ`, and `TILT`. |
| 185 | "root": { # Represents a file in Poly, which can be a root, # The root of the file hierarchy. This will always be populated. |
| 186 | # For some format_types - such as `TILT`, which are |
| 187 | # self-contained - this is all of the data. |
| 188 | # |
| 189 | # Other types - such as `OBJ` - often reference other data elements. |
| 190 | # These are contained in the resources field. |
| 191 | # resource, or thumbnail file. |
| 192 | "relativePath": "A String", # The path of the resource file relative to the |
| 193 | # root file. For root or thumbnail files, |
| 194 | # this is just the filename. |
| 195 | "contentType": "A String", # The MIME content-type, such as `image/png`. |
| 196 | # For more information, see |
| 197 | # [MIME |
| 198 | # types](//developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types). |
| 199 | "url": "A String", # The URL where the file data can be retrieved. |
| 200 | }, |
| 201 | "formatComplexity": { # Information on the complexity of this Format. # Complexity stats about this representation of the asset. |
| 202 | "triangleCount": "A String", # The estimated number of triangles. |
| 203 | "lodHint": 42, # A non-negative integer that represents the level of detail (LOD) of this |
| 204 | # format relative to other formats of the same asset with the same |
| 205 | # format_type. |
| 206 | # This hint allows you to sort formats from the most-detailed (0) to |
| 207 | # least-detailed (integers greater than 0). |
| 208 | }, |
| 209 | }, |
| 210 | ], |
| 211 | "presentationParams": { # 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 Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 212 | # immutable; the author of an asset may change them post-publication. |
| 213 | # was uploaded. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 214 | "colorSpace": "A String", # The materials' diffuse/albedo color. This does not apply to vertex colors |
| 215 | # or texture maps. |
| 216 | "orientingRotation": { # 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. |
| 217 | # More precisely, this quaternion transforms from "object space" (the space |
| 218 | # in which the object is defined) to "presentation space", a coordinate |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 219 | # system where +Y is up, +X is right, -Z is forward. For example, if |
| 220 | # the object is the Eiffel Tower, in its local coordinate system the |
| 221 | # object might be laid out such that the base of the tower is on the |
| 222 | # YZ plane and the tip of the tower is towards positive X. In this case |
| 223 | # this quaternion would specify a rotation (of 90 degrees about the Z |
| 224 | # axis) such that in the presentation space the base of the tower is |
| 225 | # aligned with the XZ plane, and the tip of the tower lies towards +Y. |
| 226 | # |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 227 | # This rotation is unrelated to the object's pose in the web preview, |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 228 | # which is just a camera position setting and is *not* reflected in this |
| 229 | # rotation. |
| 230 | # |
| 231 | # Please note: this is applicable only to the gLTF. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 232 | # response you see "w: 1" and nothing else this is the default value of |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 233 | # [0, 0, 0, 1] where x,y, and z are 0. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 234 | "z": 3.14, # The z component. |
| 235 | "x": 3.14, # The x component. |
| 236 | "w": 3.14, # The scalar component. |
| 237 | "y": 3.14, # The y component. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 238 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 239 | "backgroundColor": "A String", # A background color which could be used for displaying the 3D asset in a |
| 240 | # 'thumbnail' or 'palette' style view. Authors have the option to set this |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 241 | # background color when publishing or editing their asset. |
| 242 | # |
| 243 | # This is represented as a six-digit hexademical triplet specifying the |
| 244 | # RGB components of the background color, e.g. #FF0000 for Red. |
| 245 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 246 | "license": "A String", # The license under which the author has made the asset available |
| 247 | # for use, if any. |
| 248 | "authorName": "A String", # The author's publicly visible name. Use this name when giving credit to the |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 249 | # author. For more information, see [Licensing](/poly/discover/licensing). |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 250 | }, |
| 251 | }, |
| 252 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 253 | "nextPageToken": "A String", # The continuation token for retrieving the next page. If empty, |
| 254 | # indicates that there are no more pages. To get the next page, submit the |
| 255 | # same request specifying this value as the |
| 256 | # page_token. |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 257 | }</pre> |
| 258 | </div> |
| 259 | |
| 260 | <div class="method"> |
| 261 | <code class="details" id="list_next">list_next(previous_request, previous_response)</code> |
| 262 | <pre>Retrieves the next page of results. |
| 263 | |
| 264 | Args: |
| 265 | previous_request: The request for the previous page. (required) |
| 266 | previous_response: The response from the request for the previous page. (required) |
| 267 | |
| 268 | Returns: |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 269 | A request object that you can call 'execute()' on to request the next |
Bu Sun Kim | 715bd7f | 2019-06-14 16:50:42 -0700 | [diff] [blame] | 270 | page. Returns None if there are no more items in the collection. |
| 271 | </pre> |
| 272 | </div> |
| 273 | |
| 274 | </body></html> |