class Google::Apis::JobsV4::CompletionResult

Resource that represents completion results.

Attributes

image_uri[RW]

The URI of the company image for COMPANY_NAME. Corresponds to the JSON property `imageUri` @return [String]

suggestion[RW]

The suggestion for the query. Corresponds to the JSON property `suggestion` @return [String]

type[RW]

The completion topic. Corresponds to the JSON property `type` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v4/classes.rb, line 737
def update!(**args)
  @image_uri = args[:image_uri] if args.key?(:image_uri)
  @suggestion = args[:suggestion] if args.key?(:suggestion)
  @type = args[:type] if args.key?(:type)
end