Module Values.AccountSummarySource

An object that contains an Account's subset of fields.

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

    Specifies which industry the end Customer belongs to associated with the Opportunity. It refers to the category or sector that the customer's business operates in. To submit a value outside the picklist, use Other. Conditionally mandatory if Other is selected for Industry Vertical in LOVs.

    *)
  2. otherIndustry : AccountSummaryOtherIndustryString.t option;
    (*

    Specifies the end Customer's industry associated with the Opportunity, when the selected value in the Industry field is Other. This field is relevant when the customer's industry doesn't fall under the predefined picklist values and requires a custom description.

    *)
  3. companyName : AccountSummaryCompanyNameString.t option;
    (*

    Specifies the end Customer's company name associated with the Opportunity.

    *)
  4. websiteUrl : WebsiteUrl.t option;
    (*

    Specifies the end customer's company website URL associated with the Opportunity. This value is crucial to map the customer within the Amazon Web Services CRM system.

    *)
  5. address : AddressSummary.t option;
    (*

    Specifies the end Customer's address details associated with the Opportunity.

    *)
}
Sourceval make : ?industry:??? -> ?otherIndustry:??? -> ?companyName:??? -> ?websiteUrl:??? -> ?address:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountSummaryOtherIndustryString.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