blob: 9c66d828f6545605e8d1c03b11c23dbf0a6230e3 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 cobalt;
option go_package = "src/registry;config";
// A time window over which to aggregate Events on-device.
enum WindowSize {
UNSET = 0;
// Window size of 1 day.
WINDOW_1_DAY = 1;
// Window size of 7 days.
WINDOW_7_DAYS = 7;
// Window size of 28 days.
WINDOW_28_DAYS = 28;
// Window size of 30 days.
WINDOW_30_DAYS = 30;
}