Values.EngagementCustomerSourceContains details about the customer associated with the Engagement Invitation, including company information and industry.
type nonrec t = {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.
*)companyName : CompanyName.t;Represents the name of the customer’s company associated with the Engagement Invitation. This field is used to identify the customer.
*)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.
*)countryCode : CountryCode.t;Indicates the country in which the customer’s company operates. This field is useful for understanding regional requirements or compliance needs.
*)}val make :
industry:Industry.t ->
companyName:CompanyName.t ->
websiteUrl:CompanyWebsiteUrl.t ->
countryCode:CountryCode.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of CompanyName.t ]) list ]