// Code generated by ogen, DO NOT EDIT.
package gen
// AddChecklistItemParams is parameters of addChecklistItem operation.
type AddChecklistItemParams struct {
ChecklistId string
Name string
Pos OptString `json:",omitempty,omitzero"`
Checked OptString `json:",omitempty,omitzero"`
}
// CreateCardParams is parameters of createCard operation.
type CreateCardParams struct {
IdList string
Name string
Desc OptString `json:",omitempty,omitzero"`
Pos OptString `json:",omitempty,omitzero"`
Due OptString `json:",omitempty,omitzero"`
IdLabels OptString `json:",omitempty,omitzero"`
IdMembers OptString `json:",omitempty,omitzero"`
}
// CreateChecklistParams is parameters of createChecklist operation.
type CreateChecklistParams struct {
IdCard string
Name string
Pos OptString `json:",omitempty,omitzero"`
}
// DeleteCardParams is parameters of deleteCard operation.
type DeleteCardParams struct {
CardId string
}
// DeleteChecklistParams is parameters of deleteChecklist operation.
type DeleteChecklistParams struct {
ChecklistId string
}
// DeleteChecklistItemParams is parameters of deleteChecklistItem operation.
type DeleteChecklistItemParams struct {
ChecklistId string
CheckItemId string
}
// GetBoardParams is parameters of getBoard operation.
type GetBoardParams struct {
BoardId string
Fields OptString `json:",omitempty,omitzero"`
}
// GetCardParams is parameters of getCard operation.
type GetCardParams struct {
CardId string
Fields OptString `json:",omitempty,omitzero"`
Checklists OptString `json:",omitempty,omitzero"`
}
// GetCardsByBoardParams is parameters of getCardsByBoard operation.
type GetCardsByBoardParams struct {
BoardId string
Fields OptString `json:",omitempty,omitzero"`
}
// GetCardsByListParams is parameters of getCardsByList operation.
type GetCardsByListParams struct {
ListId string
Fields OptString `json:",omitempty,omitzero"`
}
// GetChecklistItemsParams is parameters of getChecklistItems operation.
type GetChecklistItemsParams struct {
ChecklistId string
}
// GetChecklistsParams is parameters of getChecklists operation.
type GetChecklistsParams struct {
CardId string
}
// GetListsParams is parameters of getLists operation.
type GetListsParams struct {
BoardId string
Fields OptString `json:",omitempty,omitzero"`
}
// ListBoardsParams is parameters of listBoards operation.
type ListBoardsParams struct {
Fields OptString `json:",omitempty,omitzero"`
}
// UpdateCardParams is parameters of updateCard operation.
type UpdateCardParams struct {
CardId string
Name OptString `json:",omitempty,omitzero"`
Desc OptString `json:",omitempty,omitzero"`
Closed OptString `json:",omitempty,omitzero"`
Due OptString `json:",omitempty,omitzero"`
IdList OptString `json:",omitempty,omitzero"`
Pos OptString `json:",omitempty,omitzero"`
}
// UpdateChecklistItemParams is parameters of updateChecklistItem operation.
type UpdateChecklistItemParams struct {
CardId string
CheckItemId string
Name OptString `json:",omitempty,omitzero"`
State OptString `json:",omitempty,omitzero"`
Pos OptString `json:",omitempty,omitzero"`
}