package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module AccountSettings : sig ... end
type t = {
  1. account : Account.t;
    (*

    The account created.

    *)
  2. accountSettings : AccountSettings.t;
  3. kind : string;
    (*

    Resource type for account ticket.

    *)
  4. profile : Profile.t;
    (*

    View (Profile) for the account.

    *)
  5. webproperty : Webproperty.t;
    (*

    Web property for the account.

    *)
}
val account : (t, Account.t) GapiLens.t
val accountSettings : (t, AccountSettings.t) GapiLens.t
val kind : (t, string) GapiLens.t
val profile : (t, Profile.t) GapiLens.t
val webproperty : (t, Webproperty.t) 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