From 28aede2d39a3f2ccb273c8bea5ce7d49fba02f56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20R=C3=BChl?= Date: Thu, 26 Sep 2024 11:30:49 +0200 Subject: [PATCH] fix(plc4go/opcua): fix more compile issues --- .../protocols/opcua/readwrite/model/ExtensionObjectWithMask.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plc4go/protocols/opcua/readwrite/model/ExtensionObjectWithMask.go b/plc4go/protocols/opcua/readwrite/model/ExtensionObjectWithMask.go index 64a24498152..e48de9bfe9f 100644 --- a/plc4go/protocols/opcua/readwrite/model/ExtensionObjectWithMask.go +++ b/plc4go/protocols/opcua/readwrite/model/ExtensionObjectWithMask.go @@ -49,6 +49,8 @@ type ExtensionObjectWithMaskContract interface { GetEncodingMask() ExtensionObjectEncodingMask // GetExtensionId() returns a parser argument GetExtensionId() int32 + // GetIncludeEncodingMask returns IncludeEncodingMask (discriminator field) + GetIncludeEncodingMask() bool // IsExtensionObjectWithMask is a marker method to prevent unintentional type checks (interfaces of same signature) IsExtensionObjectWithMask() }