blob: 5876809adbe002ec486d76a8f84c577384dbaf52 [file]
// Copyright 2016 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.modular.internal;
using fuchsia.modular;
/// Metadata and summary information about a single story. Does not contain the
/// data necessary to run a story: see story_model.fidl for that.
type StoryData = resource table {
/// Metadata available to the SessionShell.
1: story_info fuchsia.modular.StoryInfo2;
/// A client-supplied name for this story.
2: story_name string:MAX;
/// Story metadata and configuration.
3: story_options fuchsia.modular.StoryOptions;
/// Page id on the user's ledger which stores story information.
4: story_page_id string:MAX;
};