summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WorkbookWorksheetModel.go
blob: a064eaa466870de2812a1c162d7ba0c9bb858a7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// WorkbookWorksheet undocumented
type WorkbookWorksheet struct {
	// Entity is the base model of WorkbookWorksheet
	Entity
	// Name undocumented
	Name *string `json:"name,omitempty"`
	// Position undocumented
	Position *int `json:"position,omitempty"`
	// Visibility undocumented
	Visibility *string `json:"visibility,omitempty"`
	// Charts undocumented
	Charts []WorkbookChart `json:"charts,omitempty"`
	// Names undocumented
	Names []WorkbookNamedItem `json:"names,omitempty"`
	// PivotTables undocumented
	PivotTables []WorkbookPivotTable `json:"pivotTables,omitempty"`
	// Protection undocumented
	Protection *WorkbookWorksheetProtection `json:"protection,omitempty"`
	// Tables undocumented
	Tables []WorkbookTable `json:"tables,omitempty"`
}