Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeFunction

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

Represents a function in a script project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleAppsScriptTypeFunction

Returns a new instance of GoogleAppsScriptTypeFunction.



517
518
519
# File 'generated/google/apis/script_v1/classes.rb', line 517

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

Instance Attribute Details

#nameString

The function name in the script project. Corresponds to the JSON property name

Returns:

  • (String)


515
516
517
# File 'generated/google/apis/script_v1/classes.rb', line 515

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



522
523
524
# File 'generated/google/apis/script_v1/classes.rb', line 522

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