// automatically generated by the FlatBuffers compiler, do not modify import * as flatbuffers from 'flatbuffers'; export class CatalogAtom { bb: flatbuffers.ByteBuffer|null = null; bb_pos = 0; __init(i:number, bb:flatbuffers.ByteBuffer):CatalogAtom { this.bb_pos = i; this.bb = bb; return this; } static getRootAsCatalogAtom(bb:flatbuffers.ByteBuffer, obj?:CatalogAtom):CatalogAtom { return (obj || new CatalogAtom()).__init(bb.readInt32(bb.position()) + bb.position(), bb); } static getSizePrefixedRootAsCatalogAtom(bb:flatbuffers.ByteBuffer, obj?:CatalogAtom):CatalogAtom { bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH); return (obj || new CatalogAtom()).__init(bb.readInt32(bb.position()) + bb.position(), bb); } atomType():string|null atomType(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null atomType(optionalEncoding?:any):string|Uint8Array|null { const offset = this.bb!.__offset(this.bb_pos, 4); return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null; } quantity():number { const offset = this.bb!.__offset(this.bb_pos, 6); return offset ? this.bb!.readInt32(this.bb_pos + offset) : 0; } static startCatalogAtom(builder:flatbuffers.Builder) { builder.startObject(2); } static addAtomType(builder:flatbuffers.Builder, atomTypeOffset:flatbuffers.Offset) { builder.addFieldOffset(0, atomTypeOffset, 0); } static addQuantity(builder:flatbuffers.Builder, quantity:number) { builder.addFieldInt32(1, quantity, 0); } static endCatalogAtom(builder:flatbuffers.Builder):flatbuffers.Offset { const offset = builder.endObject(); return offset; } static createCatalogAtom(builder:flatbuffers.Builder, atomTypeOffset:flatbuffers.Offset, quantity:number):flatbuffers.Offset { CatalogAtom.startCatalogAtom(builder); CatalogAtom.addAtomType(builder, atomTypeOffset); CatalogAtom.addQuantity(builder, quantity); return CatalogAtom.endCatalogAtom(builder); } }