mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-21 14:07:52 +00:00
25 lines
559 B
Protocol Buffer
25 lines
559 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package streams;
|
||
|
|
||
|
option go_package = "github.com/chirpstack/chirpstack/api/go/v4/streams";
|
||
|
option java_package = "io.chirpstack.api.streams";
|
||
|
option java_multiple_files = true;
|
||
|
option java_outer_classname = "ApiRequestsProto";
|
||
|
option csharp_namespace = "Chirpstack.Streams";
|
||
|
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
import "common/common.proto";
|
||
|
import "gw/gw.proto";
|
||
|
|
||
|
message ApiRequestLog {
|
||
|
// API service name.
|
||
|
string service = 1;
|
||
|
|
||
|
// API method name.
|
||
|
string method = 2;
|
||
|
|
||
|
// Metadata.
|
||
|
map<string, string> metadata = 3;
|
||
|
}
|