Module Values.PayloadSource

Contains the data payload associated with the Engagement Invitation. This payload includes essential details related to the AWS opportunity and is used by partners to evaluate whether to accept or reject the engagement.

Sourcetype nonrec t = {
  1. opportunityInvitation : OpportunityInvitationPayload.t option;
    (*

    Specifies the details of the opportunity invitation within the Engagement Invitation payload. This data helps partners understand the context, scope, and expected involvement for the opportunity from AWS.

    *)
  2. leadInvitation : LeadInvitationPayload.t option;
    (*

    Specifies the details of the lead invitation within the Engagement Invitation payload. This data helps partners understand the lead context, customer information, and interaction history for the lead opportunity from AWS.

    *)
}
Sourceval make : ?opportunityInvitation:??? -> ?leadInvitation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string | `Structure of (string * [> `String of SenderContactEmail.t ]) list ] list | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of Amount.t ]) list ] list | `String of CompanyName.t ]) list ]) list ]) 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