Show / Hide Table of Contents

Class RefreshDataSourceResponse

The response from refreshing one or multiple data source objects.

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

Properties

ETag

The ETag of the item.

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

Statuses

All the refresh status for the data source object references specified in the request. If is_all is specified, the field contains only those in failure status.

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

Implements

IDirectResponseSchema
In This Article
Back to top