Class DeveloperMetadataLookup
Selects DeveloperMetadata that matches all of the specified fields. For example, if only a metadata ID is specified this considers the DeveloperMetadata with that particular unique ID. If a metadata key is specified, this considers all developer metadata with that key. If a key, visibility, and location type are all specified, this considers all developer metadata with that key and visibility that are associated with a location of that type. In general, this selects all DeveloperMetadata that matches the intersection of all the specified fields; any field or combination of fields may be specified.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class DeveloperMetadataLookup : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
LocationMatchingStrategy
Determines how this lookup matches the location. If this field is specified as EXACT, only developer metadata associated on the exact location specified is matched. If this field is specified to INTERSECTING, developer metadata associated on intersecting locations is also matched. If left unspecified, this field assumes a default value of INTERSECTING. If this field is specified, a metadataLocation must also be specified.
Declaration
[JsonProperty("locationMatchingStrategy")]
public virtual string LocationMatchingStrategy { get; set; }
Property Value
Type | Description |
---|---|
string |
LocationType
Limits the selected developer metadata to those entries which are associated with locations of the specified type. For example, when this field is specified as ROW this lookup only considers developer metadata associated on rows. If the field is left unspecified, all location types are considered. This field cannot be specified as SPREADSHEET when the locationMatchingStrategy is specified as INTERSECTING or when the metadataLocation is specified as a non-spreadsheet location: spreadsheet metadata cannot intersect any other developer metadata location. This field also must be left unspecified when the locationMatchingStrategy is specified as EXACT.
Declaration
[JsonProperty("locationType")]
public virtual string LocationType { get; set; }
Property Value
Type | Description |
---|---|
string |
MetadataId
Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_id.
Declaration
[JsonProperty("metadataId")]
public virtual int? MetadataId { get; set; }
Property Value
Type | Description |
---|---|
int? |
MetadataKey
Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_key.
Declaration
[JsonProperty("metadataKey")]
public virtual string MetadataKey { get; set; }
Property Value
Type | Description |
---|---|
string |
MetadataLocation
Limits the selected developer metadata to those entries associated with the specified location. This field either matches exact locations or all intersecting locations according the specified locationMatchingStrategy.
Declaration
[JsonProperty("metadataLocation")]
public virtual DeveloperMetadataLocation MetadataLocation { get; set; }
Property Value
Type | Description |
---|---|
DeveloperMetadataLocation |
MetadataValue
Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_value.
Declaration
[JsonProperty("metadataValue")]
public virtual string MetadataValue { get; set; }
Property Value
Type | Description |
---|---|
string |
Visibility
Limits the selected developer metadata to that which has a matching DeveloperMetadata.visibility. If left unspecified, all developer metadata visible to the requesting project is considered.
Declaration
[JsonProperty("visibility")]
public virtual string Visibility { get; set; }
Property Value
Type | Description |
---|---|
string |