package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. friendlyName : string;
    (*

    The user-friendly name for this table.

    *)
  2. id : string;
    (*

    An opaque ID of the table

    *)
  3. kind : string;
    (*

    The resource type.

    *)
  4. tableReference : TableReference.t;
    (*

    A reference uniquely identifying the table.

    *)
  5. _type : string;
    (*

    The type of table. Possible values are: TABLE, VIEW.

    *)
}
val friendlyName : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val tableReference : (t, TableReference.t) GapiLens.t
val _type : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t