Module Values.ActionMetadataSource

Contains metadata about the quantum task action, including the action type and program statistics.

Sourcetype nonrec t = {
  1. actionType : String_.t option;
    (*

    The type of action associated with the quantum task.

    *)
  2. programCount : Long.t option;
    (*

    The number of programs in a program set. This is only available for a program set.

    *)
  3. executableCount : Long.t option;
    (*

    The number of executables in a program set. This is only available for a program set.

    *)
}
Sourceval make : ?actionType:??? -> ?programCount:??? -> ?executableCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.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