class Google::Apis::WebmastersV3::ApiDimensionFilter

Attributes

dimension[RW]

Corresponds to the JSON property `dimension` @return [String]

expression[RW]

Corresponds to the JSON property `expression` @return [String]

operator[RW]

Corresponds to the JSON property `operator` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/webmasters_v3/classes.rb, line 92
def update!(**args)
  @dimension = args[:dimension] if args.key?(:dimension)
  @expression = args[:expression] if args.key?(:expression)
  @operator = args[:operator] if args.key?(:operator)
end