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

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

Overview

Represents a function in a script project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsScriptTypeFunction

Returns a new instance of GoogleAppsScriptTypeFunction.



506
507
508
# File 'lib/google/apis/script_v1/classes.rb', line 506

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)


499
500
501
# File 'lib/google/apis/script_v1/classes.rb', line 499

def name
  @name
end

#parametersArray<String>

The ordered list of parameter names of the function in the script project. Corresponds to the JSON property parameters

Returns:

  • (Array<String>)


504
505
506
# File 'lib/google/apis/script_v1/classes.rb', line 504

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



511
512
513
514
# File 'lib/google/apis/script_v1/classes.rb', line 511

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