View Source GoogleApi.Sheets.V4.Model.DeveloperMetadataLookup (google_api_sheets v0.34.0)

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.

Attributes

  • locationMatchingStrategy (type: String.t, default: nil) - 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.
  • locationType (type: String.t, default: nil) - 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.
  • metadataId (type: integer(), default: nil) - Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_id.
  • metadataKey (type: String.t, default: nil) - Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_key.
  • metadataLocation (type: GoogleApi.Sheets.V4.Model.DeveloperMetadataLocation.t, default: nil) - 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.
  • metadataValue (type: String.t, default: nil) - Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_value.
  • visibility (type: String.t, default: nil) - 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Sheets.V4.Model.DeveloperMetadataLookup{
  locationMatchingStrategy: String.t() | nil,
  locationType: String.t() | nil,
  metadataId: integer() | nil,
  metadataKey: String.t() | nil,
  metadataLocation:
    GoogleApi.Sheets.V4.Model.DeveloperMetadataLocation.t() | nil,
  metadataValue: String.t() | nil,
  visibility: String.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.