package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiSheetsV4Model.DeveloperMetadataLookupSource

Sourcetype t = {
  1. locationType : string;
    (*

    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.

    *)
  2. metadataLocation : DeveloperMetadataLocation.t;
    (*

    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.

    *)
  3. locationMatchingStrategy : string;
    (*

    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.

    *)
  4. metadataId : int;
    (*

    Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_id.

    *)
  5. metadataKey : string;
    (*

    Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_key.

    *)
  6. metadataValue : string;
    (*

    Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_value.

    *)
  7. visibility : string;
    (*

    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.

    *)
}
Sourceval locationType : (t, string) GapiLens.t
Sourceval locationMatchingStrategy : (t, string) GapiLens.t
Sourceval metadataId : (t, int) GapiLens.t
Sourceval metadataKey : (t, string) GapiLens.t
Sourceval metadataValue : (t, string) GapiLens.t
Sourceval visibility : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t