Class: Google::Apis::ScriptV1::Project

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

The script project resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Project

Returns a new instance of Project.



954
955
956
# File 'generated/google/apis/script_v1/classes.rb', line 954

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

Instance Attribute Details

#create_timeString

When the script was created. Corresponds to the JSON property createTime

Returns:

  • (String)


920
921
922
# File 'generated/google/apis/script_v1/classes.rb', line 920

def create_time
  @create_time
end

#creatorGoogle::Apis::ScriptV1::GoogleAppsScriptTypeUser

A simple user profile resource. Corresponds to the JSON property creator



925
926
927
# File 'generated/google/apis/script_v1/classes.rb', line 925

def creator
  @creator
end

#last_modify_userGoogle::Apis::ScriptV1::GoogleAppsScriptTypeUser

A simple user profile resource. Corresponds to the JSON property lastModifyUser



930
931
932
# File 'generated/google/apis/script_v1/classes.rb', line 930

def last_modify_user
  @last_modify_user
end

#parent_idString

The parent's Drive ID that the script will be attached to. This is usually the ID of a Google Document or Google Sheet. This filed is optional, and if not set, a stand-alone script will be created. Corresponds to the JSON property parentId

Returns:

  • (String)


937
938
939
# File 'generated/google/apis/script_v1/classes.rb', line 937

def parent_id
  @parent_id
end

#script_idString

The script project's Drive ID. Corresponds to the JSON property scriptId

Returns:

  • (String)


942
943
944
# File 'generated/google/apis/script_v1/classes.rb', line 942

def script_id
  @script_id
end

#titleString

The title for the project. Corresponds to the JSON property title

Returns:

  • (String)


947
948
949
# File 'generated/google/apis/script_v1/classes.rb', line 947

def title
  @title
end

#update_timeString

When the script was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


952
953
954
# File 'generated/google/apis/script_v1/classes.rb', line 952

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



959
960
961
962
963
964
965
966
967
# File 'generated/google/apis/script_v1/classes.rb', line 959

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @creator = args[:creator] if args.key?(:creator)
  @last_modify_user = args[:last_modify_user] if args.key?(:last_modify_user)
  @parent_id = args[:parent_id] if args.key?(:parent_id)
  @script_id = args[:script_id] if args.key?(:script_id)
  @title = args[:title] if args.key?(:title)
  @update_time = args[:update_time] if args.key?(:update_time)
end