-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_board_section.go
36 lines (35 loc) · 2.37 KB
/
model_board_section.go
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
26
27
28
29
30
31
32
33
34
35
36
/*
* Looker API 4.0 (Experimental) Reference
*
* Welcome to the future! This is an early preview of our next-generation Looker API 4.0. API 4.0 runs alongside APIs 3.1 and 3.0. We've tagged 4.0 as \"experimental\" to reflect that we have more work planned for API 4.0 which may include breaking changes. Please pardon our dust while we remodel a few rooms! ### In This Release We're spinning up this new API 4.0 version so that we can make adjustments to our API functions, parameters, and response types to fix bugs and inconsistencies. These changes fall outside the bounds of non-breaking additive changes we can make to our stable API 3.1. One benefit of these type adjustments in API 4.0 is dramatically better support for strongly typed languages like TypeScript, Kotlin, Java, and more. Looker is also creating client SDKs to call the Looker API from these and other languages. These client SDKs will be available as pre-built packages for download from public repositories such as npmjs.org, RubyGems.org, PyPi.org. If you use an IDE for software development, you will soon be able to install a Looker SDK for your programming language with the click of a button! While API 3.1 is still the defacto Looker API (\"current\", \"stable\", \"default\", etc), the bulk of our development activity will gradually shift to API 4.0.
*
* API version: 4.0.7.18
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package looker
import (
"time"
)
// BoardSection struct for BoardSection
type BoardSection struct {
// Operations the current user is able to perform on this object
Can map[string]bool `json:"can,omitempty"`
// Time at which this section was created.
CreatedAt time.Time `json:"created_at,omitempty"`
// Time at which this section was deleted.
DeletedAt time.Time `json:"deleted_at,omitempty"`
// Description of the content found in this section.
Description string `json:"description,omitempty"`
// Id reference to parent board
BoardId int64 `json:"board_id,omitempty"`
// Items in the board section
BoardItems []BoardItem `json:"board_items,omitempty"`
// Unique Id
Id int64 `json:"id,omitempty"`
// ids of the board items in the order they should be displayed
ItemOrder []int64 `json:"item_order,omitempty"`
// Name of row
Title string `json:"title,omitempty"`
// Time at which this section was last updated.
UpdatedAt time.Time `json:"updated_at,omitempty"`
}