10000 #52 docs - clarify tags must be a list by jacalata · Pull Request #427 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

#52 docs - clarify tags must be a list #427

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/api-ref.md
66A7
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Name | Description
`name` | The name of the data source. If not specified, the name of the published data source file is used.
`project_id` | The identifier of the project associated with the data source. When you must provide this identifier when create an instance of a `DatasourceItem`
`project_name` | The name of the project associated with the data source.
`tags` | The tags that have been added to the data source.
`tags` | The tags that have been added to the data source. This is a list of strings, e.g ["tag"].
`updated_at` | The date and time when the data source was last updated.


Expand Down Expand Up @@ -2546,7 +2546,7 @@ Name | Description
`project_name` | The name of the project.
`size` | The size of the workbook (in megabytes).
`show_tabs` | (Boolean) Determines whether the workbook shows tabs for the view.
`tags` | The tags that have been added to the workbook.
`tags` | The tags that have been added to the workbook. This is a list of strings, e.g ["tag"].
`updated_at` | The date and time when the workbook was last updated.
`views` | The list of views (`ViewItem`) for the workbook. You must first call the [workbooks.populate_views](#workbooks.populate_views) method to access this data. See the [ViewItem class](#viewitem-class).

Expand Down
0