You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`content_url` | The name of the view as it would appear in a URL.
3033
-
`csv` | The CSV data of the view. You must first call the [views.populate_csv](#views.populate_csv) method to access the CSV data.
3033
+
`csv` | The CSV data of the view. You must first call the `views.populate_csv` method to access the CSV data.
3034
3034
`id` | The identifier of the view item.
3035
-
`image` | The image of the view. You must first call the [views.populate_image](#views.populate_image)method to access the image.
3035
+
`image` | The image of the view. You must first call the `views.populate_image`method to access the image.
3036
3036
`name` | The name of the view.
3037
3037
`owner_id` | The ID for the owner of the view.
3038
-
`pdf` | The PDF of the view. You must first call the [views.populate_pdf](#views.populate_pdf) method to access the PDF content.
3039
-
`preview_image` | The thumbnail image for the view. You must first call the [views.populate_preview_image](#views.populate_preview_image) method to access the preview image.
3038
+
`pdf` | The PDF of the view. You must first call the `views.populate_pdf` method to access the PDF content.
3039
+
`preview_image` | The thumbnail image for the view. You must first call the `views.populate_preview_image` method to access the preview image.
3040
3040
`project_id` | The ID of the project that contains the view.
3041
3041
`total_views` | The usage statistics for the view. Indicates the total number of times the view has been looked at.
3042
3042
`workbook_id` | The ID of the workbook associated with the view.
@@ -3128,7 +3128,7 @@ This endpoint is available with REST API version 2.0 and up.
3128
3128
3129
3129
Name | Description
3130
3130
:--- | :---
3131
-
`view_item` | Specified the view to populate.
3131
+
`view_item` | Specifies the view to populate.
3132
3132
3133
3133
3134
3134
**Exceptions**
@@ -3169,7 +3169,7 @@ This endpoint is available with REST API version 2.5 and up.
3169
3169
Name | description
3170
3170
:--- | :---
3171
3171
`view_item` | Specifies the view to populate.
3172
-
`req_options` | (Optional) You can pass in a request object to specify a high resolution image. By default, the image will be in low resolution.
3172
+
`req_options` | (Optional) You can pass in a request object to specify a high resolution image. By default, the image will be in low resolution. See [ImageRequestOptions class](#imagerequestoptions-class)
3173
3173
3174
3174
**Exceptions**
3175
3175
@@ -3181,14 +3181,6 @@ Error | Description
3181
3181
3182
3182
None. The image is added to the `view_item` and can be accessed by its `image` field.
3183
3183
3184
-
**Example**
3185
-
3186
-
Creating a request option for high resolution image:
@@ -3250,7 +3242,7 @@ This endpoint is available with REST API version 2.7 and up.
3250
3242
Name | description
3251
3243
:--- | :---
3252
3244
`view_item` | Specifies the view to populate.
3253
-
`req_options` | (Optional) You can pass in a request object to specify the page type and orientation of the PDF content. If not specified, PDF content will have default page type and orientation.
3245
+
`req_options` | (Optional) You can pass in a request object to specify the page type and orientation of the PDF content. If not specified, PDF content will have default page type and orientation. See [PDFRequestOptions class](#pdfrequestoptions-class)
3254
3246
3255
3247
**Exceptions**
3256
3248
@@ -3262,15 +3254,6 @@ Error | Description
3262
3254
3263
3255
None. The PDF content is added to the `view_item` and can be accessed by its `pdf` field.
3264
3256
3265
-
**Example**
3266
-
3267
-
Creating a request option for page type and orientation:
0 commit comments