module Adwords: sig .. end
Adwords API and helper functions.
$Id: adwords.mli,v 1.18 2006/08/12 16:20:11 rich Exp $
type services = {
}
module type AccountAccess = sig .. end
This module controls access to the API by supplying the
email, password, clientEmail, etc.
module type Adwords = sig .. end
module Make:
val adwords_version : int
The AdWords API version that this library was compiled against.
val useragent : string
Standard User-Agent string.
val pounds_of_micro : int64 -> float
Converts Google "micro" currency units into
pounds (or dollars, or Euros).
val micro_of_pounds : float -> int64
Converts pounds (or dollars, or Euros) into
Google "micro" currency units.
val quota_used : unit -> int64
Return the number of quota units used so far in this
run of the program.
val operations_done : unit -> int64
Return the number of operations done so far in this
run of the program.
val print_summary : unit -> unit
Prints a summary of quota units used and operations
done in this run of the program, to stderr.