class TableauRestApi::Workbook
Attributes
content_url[R]
id[R]
name[R]
project[R]
Public Class Methods
new(workbook)
click to toggle source
# File lib/tableau_rest_api/resources/workbook.rb, line 5 def initialize(workbook) @id = workbook.id @name = workbook.name @content_url = workbook.contentUrl @project = Project.new(workbook.project) end