-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the MIT License. | ||
Copyright (c) 2024 Draegerwerk AG & Co. KGaA. | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
syntax = "proto3"; | ||
|
||
package t2iapi.biceps; | ||
|
||
option java_package = "com.draeger.medical.t2iapi.biceps"; | ||
option java_outer_classname = "MdibVersionGroupProto"; | ||
|
||
import "google/protobuf/wrappers.proto"; | ||
|
||
/* | ||
Represents the attributeGroup MdibVersionGroup (defined in IEEE Std 11073-10207-2017). | ||
*/ | ||
message MdibVersionGroup { | ||
google.protobuf.UInt64Value mdib_version = 1; // optional MdibVersion when finishing the rpc | ||
google.protobuf.StringValue sequence_id = 2; // SequenceId when finishing the rpc | ||
google.protobuf.UInt64Value instance_id = 3; // optional InstanceId when finishing the rpc | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters