Class: Google::Apis::SheetsV4::Editors

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

Overview

The editors of a protected range.

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) ⇒ Editors

Returns a new instance of Editors



3220
3221
3222
# File 'generated/google/apis/sheets_v4/classes.rb', line 3220

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

Instance Attribute Details

#domain_users_can_editBoolean Also known as: domain_users_can_edit?

True if anyone in the document's domain has edit access to the protected range. Domain protection is only supported on documents within a domain. Corresponds to the JSON property domainUsersCanEdit

Returns:

  • (Boolean)


3217
3218
3219
# File 'generated/google/apis/sheets_v4/classes.rb', line 3217

def domain_users_can_edit
  @domain_users_can_edit
end

#groupsArray<String>

The email addresses of groups with edit access to the protected range. Corresponds to the JSON property groups

Returns:

  • (Array<String>)


3211
3212
3213
# File 'generated/google/apis/sheets_v4/classes.rb', line 3211

def groups
  @groups
end

#usersArray<String>

The email addresses of users with edit access to the protected range. Corresponds to the JSON property users

Returns:

  • (Array<String>)


3206
3207
3208
# File 'generated/google/apis/sheets_v4/classes.rb', line 3206

def users
  @users
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3225
3226
3227
3228
3229
# File 'generated/google/apis/sheets_v4/classes.rb', line 3225

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