blob: b5dd8e7e2f2d91c0014916cb305fa9bd355b402c [file] [log] [blame]
// 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.
library fuchsia.feedback;
using fuchsia.mem;
/// An attachment and its plain ASCII string key.
/// Attachments are larger objects, e.g., log files. They may be binary or text data.
struct Attachment {
string:128 key;
fuchsia.mem.Buffer value;
};