class Google::Apis::AdexchangesellerV2_0::ReportingMetadataEntry

Attributes

compatible_dimensions[RW]

For metrics this is a list of dimension IDs which the metric is compatible with, for dimensions it is a list of compatibility groups the dimension belongs to. Corresponds to the JSON property `compatibleDimensions` @return [Array<String>]

compatible_metrics[RW]

The names of the metrics the dimension or metric this reporting metadata entry describes is compatible with. Corresponds to the JSON property `compatibleMetrics` @return [Array<String>]

id[RW]

Unique identifier of this reporting metadata entry, corresponding to the name of the appropriate dimension or metric. Corresponds to the JSON property `id` @return [String]

kind[RW]

Kind of resource this is, in this case adexchangeseller#reportingMetadataEntry. Corresponds to the JSON property `kind` @return [String]

required_dimensions[RW]

The names of the dimensions which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted. Corresponds to the JSON property `requiredDimensions` @return [Array<String>]

required_metrics[RW]

The names of the metrics which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted. Corresponds to the JSON property `requiredMetrics` @return [Array<String>]

supported_products[RW]

The codes of the projects supported by the dimension or metric this reporting metadata entry describes. Corresponds to the JSON property `supportedProducts` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/adexchangeseller_v2_0/classes.rb, line 635
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/adexchangeseller_v2_0/classes.rb, line 640
def update!(**args)
  @compatible_dimensions = args[:compatible_dimensions] if args.key?(:compatible_dimensions)
  @compatible_metrics = args[:compatible_metrics] if args.key?(:compatible_metrics)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @required_dimensions = args[:required_dimensions] if args.key?(:required_dimensions)
  @required_metrics = args[:required_metrics] if args.key?(:required_metrics)
  @supported_products = args[:supported_products] if args.key?(:supported_products)
end