Module Values.ItemSourceSource

The structure representing the items in the response for SearchRasterDataCollection.

Sourcetype nonrec t = {
  1. assets : AssetsMap.t option;
    (*

    This is a dictionary of Asset Objects data associated with the Item that can be downloaded or streamed, each with a unique key.

    *)
  2. dateTime : Timestamp.t option;
    (*

    The searchable date and time of the item, in UTC.

    *)
  3. geometry : Geometry.t option;
    (*

    The item Geometry in GeoJson format.

    *)
  4. id : String_.t option;
    (*

    A unique Id for the source item.

    *)
  5. properties : Properties.t option;
    (*

    This field contains additional properties of the item.

    *)
}
Sourceval make : ?assets:??? -> ?dateTime:??? -> ?geometry:??? -> ?id:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of String_.t ]) list ]) list | `String of String_.t | `Structure of (string * [> `Float of Float_.t | `List of [> `List of [> `List of [> `Double of Double.t ] list ] list ] list | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t