Module Values.LeadCustomerSource

Contains detailed information about the customer associated with the lead, including company details, industry classification, and AWS maturity level. This information helps qualify and categorize the lead for appropriate engagement strategies.

Sourcetype nonrec t = {
  1. industry : Industry.t option;
    (*

    Specifies the industry sector to which the lead customer's company belongs. This categorization helps in understanding the customer's business context and tailoring appropriate solutions.

    *)
  2. companyName : CompanyName.t;
    (*

    The name of the lead customer's company. This field is essential for identifying and tracking the customer organization associated with the lead.

    *)
  3. websiteUrl : CompanyWebsiteUrl.t option;
    (*

    The website URL of the lead customer's company. This provides additional context about the customer organization and helps verify company legitimacy and size.

    *)
  4. address : AddressSummary.t;
  5. awsMaturity : AwsMaturity.t option;
    (*

    Indicates the customer's level of experience and adoption with AWS services. This assessment helps determine the appropriate engagement approach and solution complexity.

    *)
  6. marketSegment : MarketSegment.t option;
    (*

    Specifies the market segment classification of the lead customer, such as enterprise, mid-market, or small business. This segmentation helps in targeting appropriate solutions and engagement strategies.

    *)
}
Sourceval context_ : string
Sourceval make : ?industry:??? -> ?websiteUrl:??? -> ?awsMaturity:??? -> ?marketSegment:??? -> companyName:CompanyName.t -> address:AddressSummary.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CompanyName.t | `Structure of (string * [> `Enum of string | `String of AddressSummaryCityString.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