// Manifest section specific to Sheets Add-ons. /// Sheets add-on manifest. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SheetsAddOnManifest { /// If present, this overrides the configuration from /// `addOns.common.homepageTrigger`. #[prost(message, optional, tag = "3")] pub homepage_trigger: ::core::option::Option, /// Endpoint to execute when file scope authorization is granted /// for this document/user pair. #[prost(message, optional, tag = "5")] pub on_file_scope_granted_trigger: ::core::option::Option, } /// Common format for declaring a Sheets add-on's triggers. #[derive(Clone, PartialEq, ::prost::Message)] pub struct SheetsExtensionPoint { /// Required. The endpoint to execute when this extension point is activated. #[prost(string, tag = "1")] pub run_function: ::prost::alloc::string::String, }