class Google::Apis::JobsV3::CompletionResult
Output only. Resource that represents completion results.
Attributes
image_uri[RW]
The URI of the company image for CompletionType.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_v3/classes.rb, line 682 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_v3/classes.rb, line 687 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