diff pkg/models/imports.go @ 2021:aa74466feaa8 unify_imports

Moved distancemarks virtual to imports file.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 24 Jan 2019 17:33:37 +0100
parents 491084efd15c
children 213f79fde44a
line wrap: on
line diff
--- a/pkg/models/imports.go	Thu Jan 24 17:30:45 2019 +0100
+++ b/pkg/models/imports.go	Thu Jan 24 17:33:37 2019 +0100
@@ -80,4 +80,15 @@
 		// Attributes are optional attributes.
 		Attributes common.Attributes `json:"attributes,omitempty"`
 	}
+
+	// DistanceMarksVirtualImport specifies an import of distance marks virtual.
+	DistanceMarksVirtualImport struct {
+		// URL is the SOAP service URL.
+		URL string `json:"url"`
+		// SendEmail is set to true if an email should be send after
+		// importing the waterway gauges.
+		SendEmail bool `json:"send-email"`
+		// Attributes are optional attributes.
+		Attributes common.Attributes `json:"attributes,omitempty"`
+	}
 )