Module Values.StepAttributeCapabilitySource

The list of step attributes.

Sourcetype nonrec t = {
  1. name : AttributeCapabilityName.t option;
    (*

    The name of the step attribute.

    *)
  2. anyOf : ListAttributeCapabilityValue.t option;
    (*

    Requires any of the step attributes in a given list.

    *)
  3. allOf : ListAttributeCapabilityValue.t option;
    (*

    Requires all of the step attribute values.

    *)
}
Sourceval make : ?name:??? -> ?anyOf:??? -> ?allOf:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AttributeCapabilityValue.t ] list | `String of AttributeCapabilityName.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