Module Values.PartnerProfileSource

Contains comprehensive profile information for a partner including public-facing details.

Sourcetype nonrec t = {
  1. displayName : UnicodeString.t option;
    (*

    The public display name for the partner organization.

    *)
  2. description : PartnerProfileDescriptionString.t option;
    (*

    A description of the partner's business, services, and capabilities.

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

    The partner's primary website URL.

    *)
  4. logoUrl : Url.t option;
    (*

    The URL to the partner's logo image.

    *)
  5. primarySolutionType : PrimarySolutionType.t option;
    (*

    The primary type of solution or service the partner provides.

    *)
  6. industrySegments : IndustrySegmentList.t option;
    (*

    The industry segments or verticals that the partner serves.

    *)
  7. translationSourceLocale : Locale.t option;
    (*

    The source locale used for automatic translation of profile content.

    *)
  8. localizedContents : LocalizedContentList.t option;
    (*

    A list of localized content versions for different languages and regions.

    *)
  9. profileId : PartnerProfileId.t option;
    (*

    The unique identifier of the partner profile.

    *)
}
Sourceval make : ?displayName:??? -> ?description:??? -> ?websiteUrl:??? -> ?logoUrl:??? -> ?primarySolutionType:??? -> ?industrySegments:??? -> ?translationSourceLocale:??? -> ?localizedContents:??? -> ?profileId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of UnicodeString.t ]) list ] list | `String of UnicodeString.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