/** * Copyright © 2016 The Thingsboard Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ syntax = "proto3"; package telemetry; option java_package = "org.thingsboard.server.extensions.core.plugin.telemetry.gen"; option java_outer_classname = "TelemetryPluginProtos"; message SubscriptionProto { string sessionId = 1; int32 subscriptionId = 2; string deviceId = 3; string type = 4; bool allKeys = 5; repeated SubscriptionKetStateProto keyStates = 6; } message SubscriptionUpdateProto { string sessionId = 1; int32 subscriptionId = 2; int32 errorCode = 3; string errorMsg = 4; repeated SubscriptionUpdateValueListProto data = 5; } message AttributeUpdateProto { string deviceId = 1; string scope = 2; repeated AttributeUpdateValueListProto data = 3; } message SessionCloseProto { string sessionId = 1; } message SubscriptionCloseProto { string sessionId = 1; int32 subscriptionId = 2; } message SubscriptionKetStateProto { string key = 1; int64 ts = 2; } message SubscriptionUpdateValueListProto { string key = 1; repeated int64 ts = 2; repeated string value = 3; } message AttributeUpdateValueListProto { string key = 1; int64 ts = 2; int32 valueType = 3; string strValue = 4; int64 longValue = 5; double doubleValue = 6; bool boolValue = 7; }