Module Values.PartnershipSummarySource

A structure that contains the details for a partnership. A partnership represents the connection between you and your trading partner. It ties together a profile and one or more trading capabilities.

Sourcetype nonrec t = {
  1. profileId : ProfileId.t option;
    (*

    Returns the unique, system-generated identifier for the profile connected to this partnership.

    *)
  2. partnershipId : PartnershipId.t option;
    (*

    Returns the unique, system-generated identifier for a partnership.

    *)
  3. name : PartnerName.t option;
    (*

    Returns the name of the partnership.

    *)
  4. capabilities : PartnershipCapabilities.t option;
    (*

    Returns one or more capabilities associated with this partnership.

    *)
  5. capabilityOptions : CapabilityOptions.t option;
  6. tradingPartnerId : TradingPartnerId.t option;
    (*

    Returns the unique, system-generated identifier for a trading partner.

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

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

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

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

    *)
}
Sourceval make : ?profileId:??? -> ?partnershipId:??? -> ?name:??? -> ?capabilities:??? -> ?capabilityOptions:??? -> ?tradingPartnerId:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CapabilityId.t ] list | `String of ProfileId.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Boolean of X12ValidateEdi.t | `Enum of string | `Integer of LineLength.t | `Structure of (string * [> `Integer of StartingInterchangeControlNumber.t | `String of X12IdQualifier.t ]) list ]) list ]) list ]) list ]) list | `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