view pkg/models/fa.go @ 1927:5a37ee321651

client: make isolines legend graphic internally availableo * Add isolines legend graphic to vuex store. Rename it to reflect it being a dataURL now. * License header: for store/map.js add 2019 and author BER.
author Bernhard Reiter <bernhard@intevation.de>
date Mon, 21 Jan 2019 10:56:14 +0100
parents d3fe20a13339
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"
)

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

type UniqueFairwayAvailability struct {
	BottleneckId string
	Surdat       time.Time
}