Module Values.AdapterOverviewSource

Contains information on the adapter, including the adapter ID, Name, Creation time, and feature types.

Sourcetype nonrec t = {
  1. adapterId : AdapterId.t option;
    (*

    A unique identifier for the adapter resource.

    *)
  2. adapterName : AdapterName.t option;
    (*

    A string naming the adapter resource.

    *)
  3. creationTime : DateTime.t option;
    (*

    The date and time that the adapter was created.

    *)
  4. featureTypes : FeatureTypes.t option;
    (*

    The feature types that the adapter is operating on.

    *)
}
Sourceval make : ?adapterId:??? -> ?adapterName:??? -> ?creationTime:??? -> ?featureTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of AdapterId.t | `Timestamp of DateTime.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