Show / Hide Table of Contents

Class Editors

The editors of a protected range.

Inheritance
System.Object
Editors
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class Editors : object, IDirectResponseSchema

Properties

DomainUsersCanEdit

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.

Declaration
public virtual Nullable<bool> DomainUsersCanEdit { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Groups

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

Declaration
public virtual IList<string> Groups { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Users

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

Declaration
public virtual IList<string> Users { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
Back to top