summaryrefslogtreecommitdiff
path: root/src/helsinki.at/rhimportd
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-12-12 04:02:12 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-12-12 04:02:12 (GMT)
commitdc915f7519a166c4cab5128593894ff368b77ac8 (patch)
treece4cb76b323d85f3028a68003bc71da0350b7d3f /src/helsinki.at/rhimportd
parent3e15d6d3c032b3680071779471770ff0f5acb0ec (diff)
importer now knows which information is needed for what operation
uint vs int for some values
Diffstat (limited to 'src/helsinki.at/rhimportd')
-rw-r--r--src/helsinki.at/rhimportd/ctrlWebSimple.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/helsinki.at/rhimportd/ctrlWebSimple.go b/src/helsinki.at/rhimportd/ctrlWebSimple.go
index 9b25dad..3f9c48d 100644
--- a/src/helsinki.at/rhimportd/ctrlWebSimple.go
+++ b/src/helsinki.at/rhimportd/ctrlWebSimple.go
@@ -37,9 +37,9 @@ type webSimpleRequestData struct {
UserName string `json:"LOGIN_NAME"`
Password string `json:"PASSWORD"`
GroupName string `json:"GROUP_NAME"`
- Cart int `json:"CART_NUMBER"`
- Cut int `json:"CUT_NUMBER"`
- Channels int `json:"CHANNELS"`
+ Cart uint `json:"CART_NUMBER"`
+ Cut uint `json:"CUT_NUMBER"`
+ Channels uint `json:"CHANNELS"`
NormalizationLevel int `json:"NORMALIZATION_LEVEL"`
AutotrimLevel int `json:"AUTOTRIM_LEVEL"`
UseMetaData bool `json:"USE_METADATA"`