package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiAdsenseV1_4Model.AdUnitSource

Sourcemodule MobileContentAdsSettings : sig ... end
Sourcemodule FeedAdsSettings : sig ... end
Sourcemodule ContentAdsSettings : sig ... end
Sourcetype t = {
  1. code : string;
    (*

    Identity code of this ad unit, not necessarily unique across ad clients.

    *)
  2. contentAdsSettings : ContentAdsSettings.t;
    (*

    Settings specific to content ads (AFC) and highend mobile content ads (AFMC - deprecated).

    *)
  3. customStyle : AdStyle.t;
    (*

    Custom style information specific to this ad unit.

    *)
  4. feedAdsSettings : FeedAdsSettings.t;
    (*

    Settings specific to feed ads (AFF) - deprecated.

    *)
  5. id : string;
    (*

    Unique identifier of this ad unit. This should be considered an opaque identifier; it is not safe to rely on it being in any particular format.

    *)
  6. kind : string;
    (*

    Kind of resource this is, in this case adsense#adUnit.

    *)
  7. mobileContentAdsSettings : MobileContentAdsSettings.t;
    (*

    Settings specific to WAP mobile content ads (AFMC) - deprecated.

    *)
  8. name : string;
    (*

    Name of this ad unit.

    *)
  9. savedStyleId : string;
    (*

    ID of the saved ad style which holds this ad unit's style information.

    *)
  10. status : string;
    (*

    Status of this ad unit. Possible values are: NEW: Indicates that the ad unit was created within the last seven days and does not yet have any activity associated with it.

    ACTIVE: Indicates that there has been activity on this ad unit in the last seven days.

    INACTIVE: Indicates that there has been no activity on this ad unit in the last seven days.

    *)
}
Sourceval code : (t, string) GapiLens.t
Sourceval contentAdsSettings : (t, ContentAdsSettings.t) GapiLens.t
Sourceval customStyle : (t, AdStyle.t) GapiLens.t
Sourceval feedAdsSettings : (t, FeedAdsSettings.t) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval mobileContentAdsSettings : (t, MobileContentAdsSettings.t) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval savedStyleId : (t, string) GapiLens.t
Sourceval status : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t