NAME

Google::Ads::AdWords::Reports::ReportingConfiguration

DESCRIPTION

Represents additional reporting configuration options.

PROPERTIES

The following properties may be accessed using get_PROPERTY / set_PROPERTY methods:

  • skip_header

    Set this to true to request that report output excludes the report header row containing the report name and date range.

  • skip_column_header

    Set this to true to request that the report output excludes the row containing column names.

  • skip_summary

    Set this to true to request that report output excludes the report summary row containing totals.

  • include_zero_impressions

    Set this to true to request that report output includes data with zero impressions.

METHODS

new

Constructor. The following data structure may be passed to new():

{ # Google::Ads::AdWords::Reports::ReportingConfiguration
  skip_header =>  $some_value, # boolean
  skip_column_header => $some_value, #boolean
  skip_summary =>  $some_value, # boolean
  include_zero_impressions => $some_value, # boolean
},