mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-24 13:43:12 +02:00
16 lines
426 B
Go
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"`
|
||
|
}
|