blob: 2eb9fa3f1205e465a43e88bde2a5fc6a8f2f7999 [file] [log] [blame]
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
package model
import (
"github.com/apache/plc4x/plc4go/internal/plc4go/spi/utils"
)
// Code generated by build-utils. DO NOT EDIT.
// The data-structure of this message
type BACnetConfirmedServiceRequestGetEventInformation struct {
Parent *BACnetConfirmedServiceRequest
}
// The corresponding interface
type IBACnetConfirmedServiceRequestGetEventInformation interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *BACnetConfirmedServiceRequestGetEventInformation) ServiceChoice() uint8 {
return 0x1D
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) InitializeParent(parent *BACnetConfirmedServiceRequest) {
}
func NewBACnetConfirmedServiceRequestGetEventInformation() *BACnetConfirmedServiceRequest {
child := &BACnetConfirmedServiceRequestGetEventInformation{
Parent: NewBACnetConfirmedServiceRequest(),
}
child.Parent.Child = child
return child.Parent
}
func CastBACnetConfirmedServiceRequestGetEventInformation(structType interface{}) *BACnetConfirmedServiceRequestGetEventInformation {
castFunc := func(typ interface{}) *BACnetConfirmedServiceRequestGetEventInformation {
if casted, ok := typ.(BACnetConfirmedServiceRequestGetEventInformation); ok {
return &casted
}
if casted, ok := typ.(*BACnetConfirmedServiceRequestGetEventInformation); ok {
return casted
}
if casted, ok := typ.(BACnetConfirmedServiceRequest); ok {
return CastBACnetConfirmedServiceRequestGetEventInformation(casted.Child)
}
if casted, ok := typ.(*BACnetConfirmedServiceRequest); ok {
return CastBACnetConfirmedServiceRequestGetEventInformation(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) GetTypeName() string {
return "BACnetConfirmedServiceRequestGetEventInformation"
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
return lengthInBits
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func BACnetConfirmedServiceRequestGetEventInformationParse(readBuffer utils.ReadBuffer) (*BACnetConfirmedServiceRequest, error) {
if pullErr := readBuffer.PullContext("BACnetConfirmedServiceRequestGetEventInformation"); pullErr != nil {
return nil, pullErr
}
if closeErr := readBuffer.CloseContext("BACnetConfirmedServiceRequestGetEventInformation"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &BACnetConfirmedServiceRequestGetEventInformation{
Parent: &BACnetConfirmedServiceRequest{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("BACnetConfirmedServiceRequestGetEventInformation"); pushErr != nil {
return pushErr
}
if popErr := writeBuffer.PopContext("BACnetConfirmedServiceRequestGetEventInformation"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *BACnetConfirmedServiceRequestGetEventInformation) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}