package bookaml

  1. Overview
  2. Docs

Basic definitions concerning books.

Type definitions

type price_t = {
  1. amount : int;
  2. currency : string;
  3. formatted : string;
}
type image_t = {
  1. url : string;
  2. width : int;
  3. height : int;
}
type t = {
  1. isbn10 : [ `ISBN10 ] Bookaml_ISBN.t option;
  2. isbn13 : [ `ISBN13 ] Bookaml_ISBN.t;
  3. title : string;
  4. author : string option;
  5. publisher : string option;
  6. pubdate : string option;
  7. page : string option;
  8. list_price : price_t option;
  9. price_new : price_t option;
  10. price_used : price_t option;
  11. price_collectible : price_t option;
  12. price_refurbished : price_t option;
  13. image_small : image_t option;
  14. image_medium : image_t option;
  15. image_large : image_t option;
}
OCaml

Innovation. Community. Security.