package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Datasets : sig ... end
type t = {
  1. datasets : Datasets.t list;
    (*

    An array of the dataset resources in the project. Each resource contains basic information. For full information about a particular dataset resource, use the Datasets: get method. This property is omitted when there are no datasets in the project.

    *)
  2. etag : string;
    (*

    A hash value of the results page. You can use this property to determine if the page has changed since the last request.

    *)
  3. kind : string;
    (*

    The list type. This property always returns the value "bigquery#datasetList".

    *)
  4. nextPageToken : string;
    (*

    A token that can be used to request the next results page. This property is omitted on the final results page.

    *)
}
val datasets : (t, Datasets.t list) GapiLens.t
val etag : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t