Module Values.LocalizedContentSource

Contains localized content for a partner profile in a specific language or locale.

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

    The localized display name for the partner.

    *)
  2. description : LocalizedContentDescriptionString.t;
    (*

    The localized description of the partner's business and services.

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

    The localized website URL for the partner.

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

    The URL to the partner's logo image for this locale.

    *)
  5. locale : Locale.t;
    (*

    The locale or language code for the localized content.

    *)
}
Sourceval context_ : string
Sourceval make : displayName:UnicodeString.t -> description:LocalizedContentDescriptionString.t -> websiteUrl:Url.t -> logoUrl:Url.t -> locale:Locale.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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