// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package content;
message AdProtos {
message AdProto {
string render_url = 1;
optional string size_group = 2;
optional string metadata = 3;
optional string buyer_reporting_id = 4;
optional string buyer_and_seller_reporting_id = 5;
repeated string selectable_buyer_and_seller_reporting_ids = 8;
optional string ad_render_id = 6;
repeated string allowed_reporting_origins = 7;
}
repeated AdProto ads = 1;
}
message BiddingAndAuctionServerKeyProtos {
message BiddingAndAuctionServerKeyProto {
bytes key = 1;
int32 id = 2;
}
repeated BiddingAndAuctionServerKeyProto keys = 1;
}
message KAnonKeyProtos {
repeated bytes keys = 1;
}