// Copyright 2019 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. | |
namespace cloud_sync; | |
enum KeyPriority : byte { EAGER = 0, LAZY = 1 } | |
table EntryPayload { | |
entry_name: [ubyte]; | |
object_identifier: [ubyte]; | |
priority: KeyPriority; | |
} | |
root_type EntryPayload; |