Class ResponseFunctionWebSearch.Action.Find.Builder
-
- All Implemented Interfaces:
public final class ResponseFunctionWebSearch.Action.Find.Builder
A builder for Find.
-
-
Method Summary
-
-
Method Detail
-
pattern
final ResponseFunctionWebSearch.Action.Find.Builder pattern(String pattern)
The pattern or text to search for within the page.
-
pattern
final ResponseFunctionWebSearch.Action.Find.Builder pattern(JsonField<String> pattern)
Sets Builder.pattern to an arbitrary JSON value.
You should usually call Builder.pattern with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final ResponseFunctionWebSearch.Action.Find.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("find")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
url
final ResponseFunctionWebSearch.Action.Find.Builder url(String url)
The URL of the page searched for the pattern.
-
url
final ResponseFunctionWebSearch.Action.Find.Builder url(JsonField<String> url)
Sets Builder.url to an arbitrary JSON value.
You should usually call Builder.url with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseFunctionWebSearch.Action.Find.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseFunctionWebSearch.Action.Find.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseFunctionWebSearch.Action.Find.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseFunctionWebSearch.Action.Find.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseFunctionWebSearch.Action.Find.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseFunctionWebSearch.Action.Find build()
Returns an immutable instance of Find.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.pattern() .url()
-
-
-
-