1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00
focalboard/server/model/compliance.go
Paul Esch-Laurent c4de1b9250 wip
2022-12-02 10:40:48 -06:00

16 lines
426 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
// ComplianceResponse is the generic response body to a compliance API
// swagger:model
type ComplianceResponse struct {
// Is there a next page for pagination?
// required: true
HasNext bool `json:"hasNext"`
// The array of results
// required: true
Results []interface{} `json:"results"`
}