diff options
author | kjaniak <kornel.janiak@nokia.com> | 2019-01-21 07:58:32 +0100 |
---|---|---|
committer | kjaniak <kornel.janiak@nokia.com> | 2019-01-21 07:59:56 +0100 |
commit | 6bf5834cd5c7a70ea22072594042c7604a8d2fb1 (patch) | |
tree | 54172f44bf6e07afdce7fb697760eb6bdadd9f8f /docs/sections/apis/ves-hv/MeasDataCollection.proto | |
parent | e4dc8b6f672aa09c96b276d1db80e300d6ec36cf (diff) |
Use 1 based indices
Change-Id: I2046919143dfa17fd2c85929e4495e9306927421
Issue-ID: DCAEGEN2-1102
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
Diffstat (limited to 'docs/sections/apis/ves-hv/MeasDataCollection.proto')
-rw-r--r-- | docs/sections/apis/ves-hv/MeasDataCollection.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sections/apis/ves-hv/MeasDataCollection.proto b/docs/sections/apis/ves-hv/MeasDataCollection.proto index cd2adabb..498358fc 100644 --- a/docs/sections/apis/ves-hv/MeasDataCollection.proto +++ b/docs/sections/apis/ves-hv/MeasDataCollection.proto @@ -60,7 +60,7 @@ message MeasValue { oneof MeasObjInstId { // monitored object LDN as per 3GPP TS 32.300 and 3GPP TS 32.432 string sMeasObjInstId = 1; // LDN itself - uint32 measObjInstIdListIdx = 2; // %%: index into measObjInstIdList (zero-based) + uint32 measObjInstIdListIdx = 2; // %%: index into measObjInstIdList (1-based) } repeated MeasResult measResults = 3; bool suspectFlag = 4; @@ -69,7 +69,7 @@ message MeasValue message MeasResult { - uint32 p = 1; // Index in the MeasTypes array (zero-based), needed only if measResults has fewer elements than MeasTypes + uint32 p = 1; // Index in the MeasTypes array (1-based), needed only if measResults has fewer elements than MeasTypes oneof xValue { sint64 iValue = 2; double rValue = 3; |