class Google::Apis::ScriptV1::GoogleAppsScriptTypeAddOnEntryPoint
An add-on entry point.
Attributes
add_on_type[RW]
The add-on's required list of supported container types. Corresponds to the JSON property `addOnType` @return [String]
description[RW]
The add-on's optional description. Corresponds to the JSON property `description` @return [String]
help_url[RW]
The add-on's optional help URL. Corresponds to the JSON property `helpUrl` @return [String]
post_install_tip_url[RW]
The add-on's required post install tip URL. Corresponds to the JSON property `postInstallTipUrl` @return [String]
report_issue_url[RW]
The add-on's optional report issue URL. Corresponds to the JSON property `reportIssueUrl` @return [String]
title[RW]
The add-on's required title. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 440 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/script_v1/classes.rb, line 445 def update!(**args) @add_on_type = args[:add_on_type] if args.key?(:add_on_type) @description = args[:description] if args.key?(:description) @help_url = args[:help_url] if args.key?(:help_url) @post_install_tip_url = args[:post_install_tip_url] if args.key?(:post_install_tip_url) @report_issue_url = args[:report_issue_url] if args.key?(:report_issue_url) @title = args[:title] if args.key?(:title) end