From bbef4842e6843df4ca6d02e6c7ee7df8a6a12c9b Mon Sep 17 00:00:00 2001 From: Mykhailo Kuchma Date: Fri, 3 Jan 2025 12:49:49 +0100 Subject: [PATCH] Add a version additional field value Add a missing version additional field value Relates-To: OCMAM-223 Signed-off-by: Mykhailo Kuchma --- .../include/olp/dataservice/read/PartitionsRequest.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/PartitionsRequest.h b/olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/PartitionsRequest.h index d89d35728..5e3ab0c81 100644 --- a/olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/PartitionsRequest.h +++ b/olp-cpp-sdk-dataservice-read/include/olp/dataservice/read/PartitionsRequest.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2019-2020 HERE Europe B.V. + * Copyright (C) 2019-2025 HERE Europe B.V. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -55,6 +55,9 @@ class DATASERVICE_READ_API PartitionsRequest final { /// Additional field to request partition crc, see GetPartitions static constexpr const char* kCrc = "crc"; + /// Additional field to request partition version, see GetPartitions + static constexpr const char* kVersion = "version"; + /// An alias for the set of additional fields. using AdditionalFields = std::vector;