mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
31 lines
861 B
Go
31 lines
861 B
Go
// Copyright © 2016 Aaron Longwell
|
|
//
|
|
// Use of this source code is governed by an MIT licese.
|
|
// Details in the LICENSE file.
|
|
|
|
package trello
|
|
|
|
type Checklist struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
IDBoard string `json:"idBoard,omitempty"`
|
|
IDCard string `json:"idCard,omitempty"`
|
|
Pos float64 `json:"pos,omitempty"`
|
|
CheckItems []CheckItem `json:"checkItems,omitempty"`
|
|
}
|
|
|
|
type CheckItem struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
State string `json:"state"`
|
|
IDChecklist string `json:"idChecklist,omitempty"`
|
|
Pos float64 `json:"pos,omitempty"`
|
|
}
|
|
|
|
// Manifestation of CheckItem when it appears in CheckItemStates
|
|
// on a Card.
|
|
type CheckItemState struct {
|
|
IDCheckItem string `json:"idCheckItem"`
|
|
State string `json:"state"`
|
|
}
|