blob: eb435fb6dee2a3e1704724eae01ea0d251bb846f [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package client;
import "client/client_id.proto";
// Id of a client request. See comment in client/client.proto for
// more details.
message RequestId {
// Required.
string id = 1;
// Required.
client.ClientId client_id = 2;
}