Module Values.ArtifactMetadataItemSource

Contains metadata about an artifact.

Sourcetype nonrec t = {
  1. agentSpaceId : AgentSpaceId.t option;
    (*

    The unique identifier of the agent space that contains the artifact.

    *)
  2. artifactId : ArtifactId.t option;
    (*

    The unique identifier of the artifact.

    *)
  3. fileName : String_.t option;
    (*

    The file name of the artifact.

    *)
  4. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the artifact was last updated, in UTC format.

    *)
}
Sourceval make : ?agentSpaceId:??? -> ?artifactId:??? -> ?fileName:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AgentSpaceId.t | `Timestamp of SyntheticTimestamp_date_time.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