Module Values.EngagementCustomerSource

Contains details about the customer associated with the Engagement Invitation, including company information and industry.

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

    Specifies the industry to which the customer’s company belongs. This field helps categorize the opportunity based on the customer’s business sector.

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

    Represents the name of the customer’s company associated with the Engagement Invitation. This field is used to identify the customer.

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

    Provides the website URL of the customer’s company. This field helps partners verify the legitimacy and size of the customer organization.

    *)
  4. countryCode : CountryCode.t;
    (*

    Indicates the country in which the customer’s company operates. This field is useful for understanding regional requirements or compliance needs.

    *)
}
Sourceval context_ : string
Sourceval make : industry:Industry.t -> companyName:CompanyName.t -> websiteUrl:CompanyWebsiteUrl.t -> countryCode:CountryCode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CompanyName.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