Module Values.ThumbnailSource

Details of a single thumbnail

Sourcetype nonrec t = {
  1. body : string option;
    (*

    The binary data for the latest thumbnail.

    *)
  2. contentType : string option;
    (*

    The content type for the latest thumbnail.

    *)
  3. thumbnailType : ThumbnailType.t option;
    (*

    Thumbnail Type

    *)
  4. timeStamp : string option;
    (*

    Time stamp for the latest thumbnail.

    *)
}
Sourceval make : ?body:??? -> ?contentType:??? -> ?thumbnailType:??? -> ?timeStamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Timestamp of string ]) 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