Module Values.CodeBindingOutputSource

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

    The time and date that the code binding was created.

    *)
  2. lastModified : string option;
    (*

    The date and time that code bindings were modified.

    *)
  3. schemaVersion : string option;
    (*

    The version number of the schema.

    *)
  4. status : CodeGenerationStatus.t option;
    (*

    The current status of code binding generation.

    *)
}
Sourceval make : ?creationDate:??? -> ?lastModified:??? -> ?schemaVersion:??? -> ?status:??? -> 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