Show / Hide Table of Contents

Class Spreadsheet

Resource that represents a spreadsheet.

Inheritance
System.Object
Spreadsheet
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 Spreadsheet : IDirectResponseSchema

Properties

DataSources

A list of external data sources connected with the spreadsheet.

Declaration
[JsonProperty("dataSources")]
public virtual IList<DataSource> DataSources { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DataSource>

DataSourceSchedules

Output only. A list of data source refresh schedules.

Declaration
[JsonProperty("dataSourceSchedules")]
public virtual IList<DataSourceRefreshSchedule> DataSourceSchedules { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DataSourceRefreshSchedule>

DeveloperMetadata

The developer metadata associated with a spreadsheet.

Declaration
[JsonProperty("developerMetadata")]
public virtual IList<DeveloperMetadata> DeveloperMetadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DeveloperMetadata>

ETag

The ETag of the item.

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

NamedRanges

The named ranges defined in a spreadsheet.

Declaration
[JsonProperty("namedRanges")]
public virtual IList<NamedRange> NamedRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<NamedRange>

Properties

Overall properties of a spreadsheet.

Declaration
[JsonProperty("properties")]
public virtual SpreadsheetProperties Properties { get; set; }
Property Value
Type Description
SpreadsheetProperties

Sheets

The sheets that are part of a spreadsheet.

Declaration
[JsonProperty("sheets")]
public virtual IList<Sheet> Sheets { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Sheet>

SpreadsheetId

The ID of the spreadsheet. This field is read-only.

Declaration
[JsonProperty("spreadsheetId")]
public virtual string SpreadsheetId { get; set; }
Property Value
Type Description
System.String

SpreadsheetUrl

The url of the spreadsheet. This field is read-only.

Declaration
[JsonProperty("spreadsheetUrl")]
public virtual string SpreadsheetUrl { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top