Class: Google::Apis::SheetsV4::Editors
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::Editors
- 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
-
#domain_users_can_edit ⇒ Boolean
(also: #domain_users_can_edit?)
True if anyone in the document's domain has edit access to the protected range.
-
#groups ⇒ Array<String>
The email addresses of groups with edit access to the protected range.
-
#users ⇒ Array<String>
The email addresses of users with edit access to the protected range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Editors
constructor
A new instance of Editors.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Editors
Returns a new instance of Editors
4485 4486 4487 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain_users_can_edit ⇒ Boolean 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
4472 4473 4474 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4472 def domain_users_can_edit @domain_users_can_edit end |
#groups ⇒ Array<String>
The email addresses of groups with edit access to the protected range.
Corresponds to the JSON property groups
4478 4479 4480 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4478 def groups @groups end |
#users ⇒ Array<String>
The email addresses of users with edit access to the protected range.
Corresponds to the JSON property users
4483 4484 4485 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4483 def users @users end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4490 4491 4492 4493 4494 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4490 def update!(**args) @domain_users_can_edit = args[:domain_users_can_edit] if args.key?(:domain_users_can_edit) @groups = args[:groups] if args.key?(:groups) @users = args[:users] if args.key?(:users) end |