Class: Google::Apis::FirebasemlV2beta::SearchEntryPoint
- Inherits:
-
Object
- Object
- Google::Apis::FirebasemlV2beta::SearchEntryPoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseml_v2beta/classes.rb,
lib/google/apis/firebaseml_v2beta/representations.rb,
lib/google/apis/firebaseml_v2beta/representations.rb
Overview
Google search entry point.
Instance Attribute Summary collapse
-
#rendered_content ⇒ String
Optional.
-
#sdk_blob ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchEntryPoint
constructor
A new instance of SearchEntryPoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchEntryPoint
Returns a new instance of SearchEntryPoint.
1108 1109 1110 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 1108 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rendered_content ⇒ String
Optional. Web content snippet that can be embedded in a web page or an app
webview.
Corresponds to the JSON property renderedContent
1100 1101 1102 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 1100 def rendered_content @rendered_content end |
#sdk_blob ⇒ String
Optional. Base64 encoded JSON representing array of tuple.
Corresponds to the JSON property sdkBlob
NOTE: Values are automatically base64 encoded/decoded in the client library.
1106 1107 1108 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 1106 def sdk_blob @sdk_blob end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1113 1114 1115 1116 |
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 1113 def update!(**args) @rendered_content = args[:rendered_content] if args.key?(:rendered_content) @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob) end |