view pkg/models/gauge.go @ 1900:6a67cd819e93

To prepare stretch import made some model data types re-usable.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 18 Jan 2019 15:04:53 +0100
parents 49e047c2106e
children
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2018 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Raimund Renkert <raimund.renkert@intevation.de>

package models

import (
	"time"

	"gemma.intevation.de/gemma/pkg/common"
)

// GaugeMeasurementImport contains data used to define the endpoint
type GaugeMeasurementImport struct {
	URL       string `json:"url"`
	Insecure  bool   `json:"insecure"`
	SendEmail bool   `json:"send-email"`
	// Attributes are optional attributes.
	Attributes common.Attributes `json:"attributes,omitempty"`
}

// GaugeMeasurement holds information about a gauge and the latest measurement
type GaugeMeasurement struct {
	Gauge           Isrs
	LatestDateIssue time.Time
}