// package: queryresult // file: ledger/queryresult/kv_query_result.proto import * as jspb from "google-protobuf"; import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb"; export class KV extends jspb.Message { getNamespace(): string; setNamespace(value: string): void; getKey(): string; setKey(value: string): void; getValue(): Uint8Array | string; getValue_asU8(): Uint8Array; getValue_asB64(): string; setValue(value: Uint8Array | string): void; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): KV.AsObject; static toObject(includeInstance: boolean, msg: KV): KV.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: KV, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): KV; static deserializeBinaryFromReader(message: KV, reader: jspb.BinaryReader): KV; } export namespace KV { export type AsObject = { namespace: string, key: string, value: Uint8Array | string, } } export class KeyModification extends jspb.Message { getTxId(): string; setTxId(value: string): void; getValue(): Uint8Array | string; getValue_asU8(): Uint8Array; getValue_asB64(): string; setValue(value: Uint8Array | string): void; hasTimestamp(): boolean; clearTimestamp(): void; getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined; setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): void; getIsDelete(): boolean; setIsDelete(value: boolean): void; serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): KeyModification.AsObject; static toObject(includeInstance: boolean, msg: KeyModification): KeyModification.AsObject; static extensions: {[key: number]: jspb.ExtensionFieldInfo}; static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo}; static serializeBinaryToWriter(message: KeyModification, writer: jspb.BinaryWriter): void; static deserializeBinary(bytes: Uint8Array): KeyModification; static deserializeBinaryFromReader(message: KeyModification, reader: jspb.BinaryReader): KeyModification; } export namespace KeyModification { export type AsObject = { txId: string, value: Uint8Array | string, timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject, isDelete: boolean, } }