Values.CapabilitySummarySourceReturns the capability summary details. A trading capability contains the information required to transform incoming EDI documents into JSON or XML outputs.
type nonrec t = {capabilityId : CapabilityId.t option;Returns a system-assigned unique identifier for the capability.
*)name : CapabilityName.t option;The display name of the capability.
*)type_ : CapabilityType.t option;Returns the type of the capability. Currently, only edi is supported.
*)createdAt : CreatedDate.t option;Returns a timestamp for creation date and time of the capability.
*)modifiedAt : ModifiedDate.t option;Returns a timestamp that identifies the most recent date and time that the capability was modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of CapabilityId.t
| `Timestamp of CreatedDate.t ])
list ]