package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Default
  2. | FromBody
    (*

    Set modifiedDate to the value provided in the body of the request. No change if no value was provided.

    *)
  3. | FromBodyIfNeeded
    (*

    Set modifiedDate to the value provided in the body of the request depending on other contents of the update.

    *)
  4. | FromBodyOrNow
    (*

    Set modifiedDate to the value provided in the body of the request, or to the current time if no value was provided.

    *)
  5. | NoChange
    (*

    Maintain the previous value of modifiedDate.

    *)
  6. | Now
    (*

    Set modifiedDate to the current time.

    *)
  7. | NowIfNeeded
    (*

    Set modifiedDate to the current time depending on contents of the update.

    *)
val to_string : t -> string
val of_string : string -> t