class Google::Apis::SearchconsoleV1::ApiDataRow
Attributes
clicks[RW]
Corresponds to the JSON property `clicks` @return [Float]
ctr[RW]
Corresponds to the JSON property `ctr` @return [Float]
impressions[RW]
Corresponds to the JSON property `impressions` @return [Float]
keys[RW]
Corresponds to the JSON property `keys` @return [Array<String>]
position[RW]
Corresponds to the JSON property `position` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/searchconsole_v1/classes.rb, line 54 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/searchconsole_v1/classes.rb, line 59 def update!(**args) @clicks = args[:clicks] if args.key?(:clicks) @ctr = args[:ctr] if args.key?(:ctr) @impressions = args[:impressions] if args.key?(:impressions) @keys = args[:keys] if args.key?(:keys) @position = args[:position] if args.key?(:position) end