AdsApp.​ReportColumnHeader

Represents a column header of a report.

Methods:

MemberTypeDescription
getBulkUploadColumnNameStringReturns the name of the column header to use in bulk uploads.
getReportColumnNameStringReturns the name of the column header as used in report queries.

getBulkUploadColumnName()

Returns the name of the column header to use in bulk uploads.

These names are the columns as they would appear in a report download from the Google Ads UI, and as recognized in bulk uploads.

NOTE: If you're generating a CsvUpload with Report, make sure to use this method in creation. Typical usage:

  var upload = AdsApp.bulkUploads().newCsvUpload([
      report.getColumnHeader("AdGroupId").getBulkUploadColumnName(),
      report.getColumnHeader("AdGroupName").getBulkUploadColumnName()
      ...]);

This method will return an error if the query uses GAQL rather than AWQL.

Return values:

TypeDescription
StringThe name of the column header to use in bulk uploads.

getReportColumnName()

Returns the name of the column header as used in report queries.

These names are the selectable columns in the query of AdsApp.report(String, Object).

Return values:

TypeDescription
StringThe name of the column header as used in report queries.