Module Values.CustomerSource

An object that contains the customer's Account and Contact.

Sourcetype nonrec t = {
  1. account : Account.t option;
    (*

    An object that contains the customer's account details.

    *)
  2. contacts : CustomerContactsList.t option;
    (*

    Represents the contact details for individuals associated with the customer of the Opportunity. This field captures relevant contacts, including decision-makers, influencers, and technical stakeholders within the customer organization. These contacts are key to progressing the opportunity.

    *)
}
Sourceval make : ?account:??? -> ?contacts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Email.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of AccountOtherIndustryString.t | `Structure of (string * [> `Enum of string | `String of AddressCityString.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