Class: Google::Apis::JobsV4::CompletionResult
- Inherits:
-
Object
- Object
- Google::Apis::JobsV4::CompletionResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v4/classes.rb,
lib/google/apis/jobs_v4/representations.rb,
lib/google/apis/jobs_v4/representations.rb
Overview
Resource that represents completion results.
Instance Attribute Summary collapse
-
#image_uri ⇒ String
The URI of the company image for COMPANY_NAME.
-
#suggestion ⇒ String
The suggestion for the query.
-
#type ⇒ String
The completion topic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CompletionResult
constructor
A new instance of CompletionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CompletionResult
Returns a new instance of CompletionResult.
733 734 735 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 733 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_uri ⇒ String
The URI of the company image for COMPANY_NAME.
Corresponds to the JSON property imageUri
721 722 723 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 721 def image_uri @image_uri end |
#suggestion ⇒ String
The suggestion for the query.
Corresponds to the JSON property suggestion
726 727 728 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 726 def suggestion @suggestion end |
#type ⇒ String
The completion topic.
Corresponds to the JSON property type
731 732 733 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 731 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
738 739 740 741 742 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 738 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 |