1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// This file is @generated by prost-build.
/// Drive add-on manifest.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DriveAddOnManifest {
    /// If present, this overrides the configuration from
    /// `addOns.common.homepageTrigger`.
    #[prost(message, optional, tag = "1")]
    pub homepage_trigger: ::core::option::Option<super::HomepageExtensionPoint>,
    /// Corresponds to behvior that should execute when items are selected
    /// in relevant Drive view (e.g. the My Drive Doclist).
    #[prost(message, optional, tag = "2")]
    pub on_items_selected_trigger: ::core::option::Option<DriveExtensionPoint>,
}
/// A generic extension point with common features, e.g. something that simply
/// needs a corresponding run function to work.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DriveExtensionPoint {
    /// Required. The endpoint to execute when this extension point is
    /// activated.
    #[prost(string, tag = "1")]
    pub run_function: ::prost::alloc::string::String,
}