class Google::Apis::ScriptV1::Content
The Content
resource.
Attributes
files[RW]
The list of script project files. One of the files is a script manifest; it must be named “appsscript”, must have type of JSON, and include the manifest configurations for the project. Corresponds to the JSON property `files` @return [Array<Google::Apis::ScriptV1::File>]
script_id[RW]
The script project's Drive ID. Corresponds to the JSON property `scriptId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 41 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 46 def update!(**args) @files = args[:files] if args.key?(:files) @script_id = args[:script_id] if args.key?(:script_id) end