Seismic Drive Client API
Types.h
Go to the documentation of this file.
1 // ============================================================================
2 // Copyright 2017-2024, Schlumberger
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 // ============================================================================
16 
17 #pragma once
18 
19 #include <string>
20 
21 namespace seismicdrive
22 {
23 
24  /*******************************************************************************/
28  {
29  std::string operation_id;
30  std::string status;
31  std::string created_at;
32  uint64_t dataset_cnt;
33  uint64_t completed_cnt;
34  uint64_t failed_cnt;
35  };
36 
37  /*******************************************************************************/
41  {
42  std::string operation_id;
43  std::string status;
44  std::string created_at;
45  uint64_t dataset_cnt;
46  uint64_t completed_cnt;
47  uint64_t failed_cnt;
48  };
49 }
std::string operation_id
Definition: Types.h:29
uint64_t dataset_cnt
Definition: Types.h:32
uint64_t completed_cnt
Definition: Types.h:33
Defines operation BulkChangeTier Status.
Definition: Types.h:40
uint64_t completed_cnt
Definition: Types.h:46
uint64_t failed_cnt
Definition: Types.h:34
std::string operation_id
Definition: Types.h:42
std::string status
Definition: Types.h:30
uint64_t dataset_cnt
Definition: Types.h:45
Definition: Constants.h:27
uint64_t failed_cnt
Definition: Types.h:47
std::string status
Definition: Types.h:43
std::string created_at
Definition: Types.h:44
std::string created_at
Definition: Types.h:31
Defines operation BulkDelete Status.
Definition: Types.h:27