Module Values.DataSourceSummarySource

Contains details about a data source.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t option;
    (*

    The unique identifier of the knowledge base to which the data source belongs.

    *)
  2. dataSourceId : Id.t option;
    (*

    The unique identifier of the data source.

    *)
  3. name : Name.t option;
    (*

    The name of the data source.

    *)
  4. status : DataSourceStatus.t option;
    (*

    The status of the data source.

    *)
  5. description : Description.t option;
    (*

    The description of the data source.

    *)
  6. updatedAt : DateTimestamp.t option;
    (*

    The time at which the data source was last updated.

    *)
}
Sourceval make : ?knowledgeBaseId:??? -> ?dataSourceId:??? -> ?name:??? -> ?status:??? -> ?description:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of DateTimestamp.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