view pkg/models/stretch.go @ 1902:c4af342be999

Use waterway area as basis for bottleneck area generation.
author Sascha Wilde <wilde@intevation.de>
date Fri, 18 Jan 2019 16:11:08 +0100
parents 71b722809b2b
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):
//  * Sascha L. Teichmann <sascha.teichmann@intevation.de>

package models

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

type StretchImport struct {
	Name      string          `json:"name"`
	From      Isrs            `json:"from"`
	To        Isrs            `json:"to"`
	ObjNam    string          `json:"objnam"`
	NObjNam   *string         `json:"nobjnam"`
	Source    string          `json:"source-organization"`
	Date      Date            `json:"date-info"`
	Countries UniqueCountries `json:"countries"`

	SendEmail  bool              `json:"send-email"`
	Attributes common.Attributes `json:"attributes,omitempty"`
}