mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-22 22:42:27 +00:00
963842ef55
This makes it possible for external services to subscribe (through Redis) for realtime events. E.g. a create, update or delete device event could trigger an external synchronization.
36 lines
1.2 KiB
TypeScript
Vendored
36 lines
1.2 KiB
TypeScript
Vendored
// package: api
|
|
// file: api/request_log.proto
|
|
|
|
import * as jspb from "google-protobuf";
|
|
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
import * as common_common_pb from "../common/common_pb";
|
|
import * as gw_gw_pb from "../gw/gw_pb";
|
|
|
|
export class RequestLog extends jspb.Message {
|
|
getService(): string;
|
|
setService(value: string): void;
|
|
|
|
getMethod(): string;
|
|
setMethod(value: string): void;
|
|
|
|
getMetadataMap(): jspb.Map<string, string>;
|
|
clearMetadataMap(): void;
|
|
serializeBinary(): Uint8Array;
|
|
toObject(includeInstance?: boolean): RequestLog.AsObject;
|
|
static toObject(includeInstance: boolean, msg: RequestLog): RequestLog.AsObject;
|
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
static serializeBinaryToWriter(message: RequestLog, writer: jspb.BinaryWriter): void;
|
|
static deserializeBinary(bytes: Uint8Array): RequestLog;
|
|
static deserializeBinaryFromReader(message: RequestLog, reader: jspb.BinaryReader): RequestLog;
|
|
}
|
|
|
|
export namespace RequestLog {
|
|
export type AsObject = {
|
|
service: string,
|
|
method: string,
|
|
metadataMap: Array<[string, string]>,
|
|
}
|
|
}
|
|
|