Module Values.UpdateLeadContextSource

Updates the context information for a lead with qualification status, customer details, and interaction data.

Sourcetype nonrec t = {
  1. qualificationStatus : LeadQualificationStatus.t option;
    (*

    The updated qualification status of the lead.

    *)
  2. customer : LeadCustomer.t;
    (*

    Updated customer information associated with the lead.

    *)
  3. interaction : LeadInteraction.t option;
    (*

    Updated interaction details for the lead context.

    *)
}
Sourceval context_ : string
Sourceval make : ?qualificationStatus:??? -> ?interaction:??? -> customer:LeadCustomer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LeadQualificationStatus.t | `Structure of (string * [> `Enum of string | `String of CompanyName.t | `Structure of (string * [> `Enum of string | `String of AddressSummaryCityString.t ]) list | `Timestamp of DateTime.t ]) 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