Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb

Overview

Web app entry point configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsScriptTypeWebAppConfig

Returns a new instance of GoogleAppsScriptTypeWebAppConfig.



640
641
642
# File 'generated/google/apis/script_v1/classes.rb', line 640

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#accessString

Who has permission to run the web app. Corresponds to the JSON property access

Returns:

  • (String)


633
634
635
# File 'generated/google/apis/script_v1/classes.rb', line 633

def access
  @access
end

#execute_asString

Who to execute the web app as. Corresponds to the JSON property executeAs

Returns:

  • (String)


638
639
640
# File 'generated/google/apis/script_v1/classes.rb', line 638

def execute_as
  @execute_as
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



645
646
647
648
# File 'generated/google/apis/script_v1/classes.rb', line 645

def update!(**args)
  @access = args[:access] if args.key?(:access)
  @execute_as = args[:execute_as] if args.key?(:execute_as)
end