Module Values_2.MediaItemSource

Contains information about a media asset used in a workspace.

Sourcetype nonrec t = {
  1. type_ : Values_1.MediaType.t option;
    (*

    The type of media. Valid values are: IMAGE_LOGO_FAVICON and IMAGE_LOGO_HORIZONTAL.

    *)
  2. source : Values_1.MediaSource.t option;
    (*

    The source URL or data for the media asset.

    *)
}
Sourceval make : ?type_:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.MediaSource.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