Show / Hide Table of Contents

Class UpdateDeveloperMetadataRequest

A request to update properties of developer metadata. Updates the properties of the developer metadata selected by the filters to the values provided in the DeveloperMetadata resource. Callers must specify the properties they wish to update in the fields parameter, as well as specify at least one DataFilter matching the metadata they wish to update.

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

Properties

DataFilters

The filters matching the developer metadata entries to update.

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

DeveloperMetadata

The value that all metadata matched by the data filters will be updated to.

Declaration
[JsonProperty("developerMetadata")]
public virtual DeveloperMetadata DeveloperMetadata { get; set; }
Property Value
Type Description
DeveloperMetadata

ETag

The ETag of the item.

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

Fields

The fields that should be updated. At least one field must be specified. The root developerMetadata is implied and should not be specified. A single &quot;*&quot; can be used as short-hand for listing every field.

Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top