Module Values.DisplayDataSource

A structure that describes how the portal represents an application provider.

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

    The name of the application provider that appears in the portal.

    *)
  2. iconUrl : IconUrl.t option;
    (*

    A URL that points to an icon that represents the application provider.

    *)
  3. description : Description.t option;
    (*

    The description of the application provider that appears in the portal.

    *)
}
Sourceval make : ?displayName:??? -> ?iconUrl:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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