class Google::Apis::AdsenseV1_4::ReportingMetadataEntry
Attributes
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>]
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>]
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 of resource this is, in this case adsense#reportingMetadataEntry. Corresponds to the JSON property `kind` @return [String]
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>]
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>]
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
# File lib/google/apis/adsense_v1_4/classes.rb, line 1059 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/adsense_v1_4/classes.rb, line 1064 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