main

mattermost/focalboard

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

cloud.go

TLDR

This file defines the BoardsCloudLimits struct, which represents the limits for the Boards server.

Classes

BoardsCloudLimits

This class represents the limits for the Boards server. It has the following properties:

  • Cards (int): The maximum number of cards on the server.
  • UsedCards (int): The current number of cards on the server.
  • CardLimitTimestamp (int64): The updated_at timestamp of the limit card.
  • Views (int): The maximum number of views for each board.
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

package model

const LimitUnlimited = 0

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

	// The current number of cards on the server
	// required: true
	UsedCards int `json:"used_cards"`

	// The updated_at timestamp of the limit card
	// required: true
	CardLimitTimestamp int64 `json:"card_limit_timestamp"`

	// The maximum number of views for each board
	// required: true
	Views int `json:"views"`
}