main

mattermost/focalboard

Last updated at: 29/12/2023 09:48

board_statistics.go

TLDR

This file defines the BoardsStatistics struct, which represents the statistics for the Boards server.

Classes

BoardsStatistics

The BoardsStatistics struct represents the statistics for the Boards server. It has the following fields:

  • Boards (type: int): The maximum number of cards on the server.
  • Cards (type: int): The maximum number of cards on the server.
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model

// BoardsStatistics is the representation of the statistics for the Boards server
// swagger:model
type BoardsStatistics struct {
	// The maximum number of cards on the server
	// required: true
	Boards int `json:"board_count"`

	// The maximum number of cards on the server
	// required: true
	Cards int `json:"card_count"`
}