Class DeveloperMetadata
Developer metadata associated with a location or object in a spreadsheet. Developer metadata may be used to associate arbitrary data with various parts of a spreadsheet and will remain associated at those locations as they move around and the spreadsheet is edited. For example, if developer metadata is associated with row 5 and another row is then subsequently inserted above row 5, that original metadata will still be associated with the row it was first associated with (what is now row 6). If the associated object is deleted its metadata is deleted too.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class DeveloperMetadata : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Location
The location where the metadata is associated.
Declaration
[JsonProperty("location")]
public virtual DeveloperMetadataLocation Location { get; set; }
Property Value
Type | Description |
---|---|
DeveloperMetadataLocation |
MetadataId
The spreadsheet-scoped unique ID that identifies the metadata. IDs may be specified when metadata is created, otherwise one will be randomly generated and assigned. Must be positive.
Declaration
[JsonProperty("metadataId")]
public virtual int? MetadataId { get; set; }
Property Value
Type | Description |
---|---|
int? |
MetadataKey
The metadata key. There may be multiple metadata in a spreadsheet with the same key. Developer metadata must always have a key specified.
Declaration
[JsonProperty("metadataKey")]
public virtual string MetadataKey { get; set; }
Property Value
Type | Description |
---|---|
string |
MetadataValue
Data associated with the metadata's key.
Declaration
[JsonProperty("metadataValue")]
public virtual string MetadataValue { get; set; }
Property Value
Type | Description |
---|---|
string |
Visibility
The metadata visibility. Developer metadata must always have a visibility specified.
Declaration
[JsonProperty("visibility")]
public virtual string Visibility { get; set; }
Property Value
Type | Description |
---|---|
string |