Show / Hide Table of Contents

Class Editors

The editors of a protected range.

Inheritance
System.Object
Editors
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class Editors : 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
[JsonProperty("domainUsersCanEdit")]
public virtual 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
[JsonProperty("groups")]
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
[JsonProperty("users")]
public virtual IList<string> Users { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top