1
#pragma once
2

            
3
#include <string>
4

            
5
#include "absl/strings/string_view.h"
6
#include "google/rpc/status.pb.h"
7

            
8
namespace Envoy {
9
namespace Config {
10

            
11
struct UpdateAck {
12
  UpdateAck(absl::string_view nonce, absl::string_view type_url)
13
3099
      : nonce_(nonce), type_url_(type_url) {}
14
  const std::string nonce_;
15
  const std::string type_url_;
16
  ::google::rpc::Status error_detail_;
17
};
18

            
19
} // namespace Config
20
} // namespace Envoy