Module Values.CapabilitySummarySource

Returns the capability summary details. A trading capability contains the information required to transform incoming EDI documents into JSON or XML outputs.

Sourcetype nonrec t = {
  1. capabilityId : CapabilityId.t option;
    (*

    Returns a system-assigned unique identifier for the capability.

    *)
  2. name : CapabilityName.t option;
    (*

    The display name of the capability.

    *)
  3. type_ : CapabilityType.t option;
    (*

    Returns the type of the capability. Currently, only edi is supported.

    *)
  4. createdAt : CreatedDate.t option;
    (*

    Returns a timestamp for creation date and time of the capability.

    *)
  5. modifiedAt : ModifiedDate.t option;
    (*

    Returns a timestamp that identifies the most recent date and time that the capability was modified.

    *)
}
Sourceval make : ?capabilityId:??? -> ?name:??? -> ?type_:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CapabilityId.t | `Timestamp of CreatedDate.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