Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0CommonWebpageConditionInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/searchads360_v0/classes.rb,
lib/google/apis/searchads360_v0/representations.rb,
lib/google/apis/searchads360_v0/representations.rb

Overview

Logical expression for targeting webpages of an advertiser's website.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAdsSearchads360V0CommonWebpageConditionInfo

Returns a new instance of GoogleAdsSearchads360V0CommonWebpageConditionInfo.



2743
2744
2745
# File 'lib/google/apis/searchads360_v0/classes.rb', line 2743

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#argumentString

Argument of webpage targeting condition. Corresponds to the JSON property argument

Returns:

  • (String)


2731
2732
2733
# File 'lib/google/apis/searchads360_v0/classes.rb', line 2731

def argument
  @argument
end

#operandString

Operand of webpage targeting condition. Corresponds to the JSON property operand

Returns:

  • (String)


2736
2737
2738
# File 'lib/google/apis/searchads360_v0/classes.rb', line 2736

def operand
  @operand
end

#operatorString

Operator of webpage targeting condition. Corresponds to the JSON property operator

Returns:

  • (String)


2741
2742
2743
# File 'lib/google/apis/searchads360_v0/classes.rb', line 2741

def operator
  @operator
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2748
2749
2750
2751
2752
# File 'lib/google/apis/searchads360_v0/classes.rb', line 2748

def update!(**args)
  @argument = args[:argument] if args.key?(:argument)
  @operand = args[:operand] if args.key?(:operand)
  @operator = args[:operator] if args.key?(:operator)
end