diff options
author | kjaniak <kornel.janiak@nokia.com> | 2019-01-18 12:18:42 +0100 |
---|---|---|
committer | kjaniak <kornel.janiak@nokia.com> | 2019-01-18 12:19:32 +0100 |
commit | ba33c1cc568e7b08f9bb718ffccb27f086342b5c (patch) | |
tree | 138252a5c7323af0e6fc74d83b21fc831261894d | |
parent | f3868fd2e5cb60183639cde3eed6c7737a575c46 (diff) |
Use 1 based indices
Change-Id: Ic2c4309169deed9dab54891c23c5c67d971fc11b
Issue-ID: DCAEGEN2-1102
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
-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; |