// Code generated by the FlatBuffers compiler. DO NOT EDIT. package scrabblefb import ( flatbuffers "github.com/google/flatbuffers/go" ) type NotificationEvent struct { _tab flatbuffers.Table } func GetRootAsNotificationEvent(buf []byte, offset flatbuffers.UOffsetT) *NotificationEvent { n := flatbuffers.GetUOffsetT(buf[offset:]) x := &NotificationEvent{} x.Init(buf, n+offset) return x } func FinishNotificationEventBuffer(builder *flatbuffers.Builder, offset flatbuffers.UOffsetT) { builder.Finish(offset) } func GetSizePrefixedRootAsNotificationEvent(buf []byte, offset flatbuffers.UOffsetT) *NotificationEvent { n := flatbuffers.GetUOffsetT(buf[offset+flatbuffers.SizeUint32:]) x := &NotificationEvent{} x.Init(buf, n+offset+flatbuffers.SizeUint32) return x } func FinishSizePrefixedNotificationEventBuffer(builder *flatbuffers.Builder, offset flatbuffers.UOffsetT) { builder.FinishSizePrefixed(offset) } func (rcv *NotificationEvent) Init(buf []byte, i flatbuffers.UOffsetT) { rcv._tab.Bytes = buf rcv._tab.Pos = i } func (rcv *NotificationEvent) Table() flatbuffers.Table { return rcv._tab } func (rcv *NotificationEvent) Kind() []byte { o := flatbuffers.UOffsetT(rcv._tab.Offset(4)) if o != 0 { return rcv._tab.ByteVector(o + rcv._tab.Pos) } return nil } func (rcv *NotificationEvent) Account(obj *AccountRef) *AccountRef { o := flatbuffers.UOffsetT(rcv._tab.Offset(6)) if o != 0 { x := rcv._tab.Indirect(o + rcv._tab.Pos) if obj == nil { obj = new(AccountRef) } obj.Init(rcv._tab.Bytes, x) return obj } return nil } func (rcv *NotificationEvent) Invitation(obj *Invitation) *Invitation { o := flatbuffers.UOffsetT(rcv._tab.Offset(8)) if o != 0 { x := rcv._tab.Indirect(o + rcv._tab.Pos) if obj == nil { obj = new(Invitation) } obj.Init(rcv._tab.Bytes, x) return obj } return nil } func (rcv *NotificationEvent) State(obj *StateView) *StateView { o := flatbuffers.UOffsetT(rcv._tab.Offset(10)) if o != 0 { x := rcv._tab.Indirect(o + rcv._tab.Pos) if obj == nil { obj = new(StateView) } obj.Init(rcv._tab.Bytes, x) return obj } return nil } func NotificationEventStart(builder *flatbuffers.Builder) { builder.StartObject(4) } func NotificationEventAddKind(builder *flatbuffers.Builder, kind flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(0, flatbuffers.UOffsetT(kind), 0) } func NotificationEventAddAccount(builder *flatbuffers.Builder, account flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(1, flatbuffers.UOffsetT(account), 0) } func NotificationEventAddInvitation(builder *flatbuffers.Builder, invitation flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(2, flatbuffers.UOffsetT(invitation), 0) } func NotificationEventAddState(builder *flatbuffers.Builder, state flatbuffers.UOffsetT) { builder.PrependUOffsetTSlot(3, flatbuffers.UOffsetT(state), 0) } func NotificationEventEnd(builder *flatbuffers.Builder) flatbuffers.UOffsetT { return builder.EndObject() }