Class: Google::Apis::PartnersV2::Rank

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

Overview

Information related to ranking of results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Rank

Returns a new instance of Rank



1873
1874
1875
# File 'generated/google/apis/partners_v2/classes.rb', line 1873

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

Instance Attribute Details

#typeString

The type of rank. Corresponds to the JSON property type

Returns:

  • (String)


1866
1867
1868
# File 'generated/google/apis/partners_v2/classes.rb', line 1866

def type
  @type
end

#valueFloat

The numerical value of the rank. Corresponds to the JSON property value

Returns:

  • (Float)


1871
1872
1873
# File 'generated/google/apis/partners_v2/classes.rb', line 1871

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1878
1879
1880
1881
# File 'generated/google/apis/partners_v2/classes.rb', line 1878

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end