mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
22 lines
672 B
Go
22 lines
672 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// Workbook undocumented
|
||
|
type Workbook struct {
|
||
|
// Entity is the base model of Workbook
|
||
|
Entity
|
||
|
// Application undocumented
|
||
|
Application *WorkbookApplication `json:"application,omitempty"`
|
||
|
// Names undocumented
|
||
|
Names []WorkbookNamedItem `json:"names,omitempty"`
|
||
|
// Tables undocumented
|
||
|
Tables []WorkbookTable `json:"tables,omitempty"`
|
||
|
// Worksheets undocumented
|
||
|
Worksheets []WorkbookWorksheet `json:"worksheets,omitempty"`
|
||
|
// Comments undocumented
|
||
|
Comments []WorkbookComment `json:"comments,omitempty"`
|
||
|
// Functions undocumented
|
||
|
Functions *WorkbookFunctions `json:"functions,omitempty"`
|
||
|
}
|